► Source Code & Notes: https://codewithharry.com/videos/web-development-in-hindi-28
►This video is a part of this Complete Web Development in Hindi Course Playlist: https://www.youtube.com/playlist?list=PLu0W_9lII9agiCUZYRsvtGTXdxkzPyItg
►Click here to subscribe – https://www.youtube.com/channel/UCeVMnSShP_Iviwkknt83cww
►Checkout my English channel here: https://www.youtube.com/ProgrammingWithHarry

Best Hindi Videos For Learning Programming:

►Learn Python In One Video – https://www.youtube.com/watch?v=ihk_Xglr164

►Python Complete Course In Hindi – https://www.youtube.com/playlist?list=PLu0W_9lII9agICnT8t4iYVSZ3eykIAOME

►C Language Complete Course In Hindi –
https://www.youtube.com/playlist?list=PLu0W_9lII9aiXlHcLx-mDH1Qul38wD3aR&disable_polymer=true

►JavaScript Complete Course In Hindi –
https://www.youtube.com/playlist?list=PLu0W_9lII9ajyk081To1Cbt2eI5913SsL

►Learn JavaScript in One Video – https://www.youtube.com/watch?v=onbBV0uFVpo

►Learn PHP In One Video – https://www.youtube.com/watch?v=xW7ro3lwaCI

►Django Complete Course In Hindi –
https://www.youtube.com/playlist?list=PLu0W_9lII9ah7DDtYtflgwMwpT3xmjXY9

►Machine Learning Using Python – https://www.youtube.com/playlist?list=PLu0W_9lII9ai6fAMHp-acBmJONT7Y4BSG

►Creating & Hosting A Website (Tech Blog) Using Python – https://www.youtube.com/playlist?list=PLu0W_9lII9agAiWp6Y41ueUKx1VcTRxmf

►Advanced Python Tutorials – https://www.youtube.com/playlist?list=PLu0W_9lII9aiJWQ7VhY712fuimEpQZYp4

►Object Oriented Programming In Python – https://www.youtube.com/playlist?list=PLu0W_9lII9ahfRrhFcoB-4lpp9YaBmdCP

►Python Data Science and Big Data Tutorials – https://www.youtube.com/playlist?list=PLu0W_9lII9agK8pojo23OHiNz3Jm6VQCH

Follow Me On Social Media
►Website (created using Flask) – http://www.codewithharry.com
►Facebook – https://www.facebook.com/CodeWithHarry
►Instagram – https://www.instagram.com/codewithharry/
►Personal Facebook A/c – https://www.facebook.com/geekyharis
Twitter – https://twitter.com/Haris_Is_Here

source

49 Comments

  1. idk why but my wrap property isnt working can someone plzz help
    .container{

    height: 500px;

    width: 1200px;

    border: 2px solid red;

    display: flex;

    /* flex-direction: column; */

    /* flex-direction: row; */

    /* flex-direction: row-reverse; */

    /* flex-direction: column-reverse;

    flex-wrap: nowrap;

    flex-wrap:wrap;

    /* flex-wrap: wrap-reverse; */

    flex-flow: row-reverse wrap;

    /* justify-content: center; */

    justify-content: space-between;

    /* align-items: center; */

    /* align-items:flex-end; */

    align-items: stretch;

    }

  2. Justify content doesn't align to the horizontal only. Justify-content aligns along the main-axis while align-items align along the cross-axis.
    The flex direction decides the main and the corss axis.
    if (flex-direction == row) { main-axis = horizontal axis, cross-axis = vertical axis }
    if (flex-direction == column) { main-axis = vertical axis, cross-axis = horizontal axis }
    Happy Learning

  3. Harry bhai, today I just tried instagram profile page using html and css. I didnt even know how to add a image but only because of you I could do this. It was not 100 percent perfect but I can say 80 to 85 percent perfect. I also got confidence that watching your tutorials I could do many more things. Thanks infinity. Hope to see more interesting tutorials from you. You are the best

  4. Sir but when we write align item stretch then there is no difference . when flex wrap is wrap and we can reduce the height then it automatically take a size without using align item stretch. Why ?🙄

  5. Awesome tutorial. Initially I don't like CSS at all. But after watching your playlist I like CSS part. Thank you harry bhai for such great content in most easy to understand explanation. Thanks a lot.

Leave A Reply

Please enter your comment!
Please enter your name here