CSS Tutorial: CSS Display Property | Web Development Tutorials #24

Поделиться
HTML-код
  • Опубликовано: 30 сен 2024
  • ► Source Code & Notes: codewithharry....
    ►This video is a part of this Complete Web Development in Hindi Course Playlist: • Web Development Tutori...
    ►Click here to subscribe - / @codewithharry
    ►Checkout my English channel here: / programmingwithharry
    Best Hindi Videos For Learning Programming:
    ►Learn Python In One Video - • Python Tutorial In Hin...
    ►Python Complete Course In Hindi - • Python Tutorials For A...
    ►C Language Complete Course In Hindi -
    • C Language Tutorials I...
    ►JavaScript Complete Course In Hindi -
    • JavaScript Tutorials I...
    ►Learn JavaScript in One Video - • JavaScript Tutorial
    ►Learn PHP In One Video - • Learn Php In One Video...
    ►Django Complete Course In Hindi -
    • Python Django Tutorial...
    ►Machine Learning Using Python - • Machine Learning Tutor...
    ►Creating & Hosting A Website (Tech Blog) Using Python - • [Hindi] Web Developmen...
    ►Advanced Python Tutorials - • Intermediate/Advanced ...
    ►Object Oriented Programming In Python - • Object Oriented Progra...
    ►Python Data Science and Big Data Tutorials - • Python Data Science an...
    Follow Me On Social Media
    ►Website (created using Flask) - www.codewithhar...
    ►Facebook - / codewithharry
    ►Instagram - / codewithharry
    ►Personal Facebook A/c - / geekyharis
    Twitter - / haris_is_here

Комментарии • 724

  • @mazharimam9216
    @mazharimam9216 4 года назад +575

    The first lecture where I felt like it's bit tough to understand 😅😅😅..

    • @bharatmishra250
      @bharatmishra250 3 года назад +44

      @@yashkapoor2377 yeah web development is all about learning 10%then apply 100%(practice)

    • @dilawarmehar3685
      @dilawarmehar3685 3 года назад +5

      same

    • @wizminar
      @wizminar 3 года назад +18

      @@bharatmishra250 yes!!! we are soo lucky we are getting this for free my brother learned this from college...(web development)

    • @desihiphop4998
      @desihiphop4998 3 года назад +4

      @Deangelo Kyng girlfriend he banwa de bhai smjh to kuch aa Nahi raha hai time to pass hoga 🙂🙂

    • @tpermcubing8139
      @tpermcubing8139 3 года назад +4

      I felt this is floats but than I found an animated explanation of it then I really understood floats in a pretty good way'

  • @amdrx6700xt
    @amdrx6700xt 3 года назад +586

    for peoples who are getting confused: " in HTML there are inline and block elements, so with the help of display property you can make an inline element a block element. you can make a block element an inline element".hope this makes sense

    • @introvert_attique
      @introvert_attique 3 года назад +6

      tnx

    • @Krenil.
      @Krenil. 3 года назад +3

      tnx

    • @wowwow4254
      @wowwow4254 3 года назад +5

      First in the video it was shown as header is block
      So if we do Margin auto then header as it occupies full space margin auto will not work as margin on both side will be equal and 0 by itself
      So width was reduced and then margin auto centered the item
      But in second case of image we changed an inline to block but didn't add any width
      Why and how did it happen

    • @abhinavkumar8396
      @abhinavkumar8396 3 года назад +2

      Tnx bro

    • @sankalpsachan9199
      @sankalpsachan9199 3 года назад +1

      @@Krenil. we did margin auto in img

  • @Moreynium
    @Moreynium 3 года назад +428

    Short note for those who get confused.
    1)we can set width to block element and not to inline element. but we can make them block by { display: block} property. So that we don't have to use margin and padding extensively.
    2)But what if we want that element to position itself (OR occupy space) like inline element and also get adjusted by width? for this we use {display:inline-block} property.
    Any correction would be appreciated!

    • @navin346
      @navin346 3 года назад +20

      This is most underrated comment. Thanks it is useful to me :)

    • @arkumar842
      @arkumar842 2 года назад +9

      Img tag is a inline tag but still be can set its width. Why?

    • @utkarshpatil3180
      @utkarshpatil3180 2 года назад +12

      @@arkumar842 in that we are setting width of image, not width of the tag.

    • @shishirgupta5978
      @shishirgupta5978 2 года назад +1

      Thanks a Lot!!

    • @rasid_khan
      @rasid_khan 2 года назад +2

      great

  • @LOKESHPAWAR20
    @LOKESHPAWAR20 4 года назад +250

    People who are confused with border box. Consider following scenario:
    width : 500 px
    padding :100 px
    border: 10 px
    without border-box the total width of content would be 500+100+10=610px.
    but with border-box total width of the content would be 500 only 100 and 10 px will consider inside 500 px.

    • @owaisahmed9564
      @owaisahmed9564 4 года назад +2

      thanks

    • @masst1961
      @masst1961 4 года назад +3

      Bhai Mera ek inline block mai Nahi aa raha . Mai bilkul same Kar Raha hoo

    • @DHARMENDRASINGH-qc4hp
      @DHARMENDRASINGH-qc4hp 4 года назад +1

      @@masst1961mera bhi nhi aa raha

    • @masst1961
      @masst1961 4 года назад +2

      @@DHARMENDRASINGH-qc4hp Bhai aage Dekha hai
      Harry bhai ne inline box Ka alternative flex bhi bataya hai.

    • @DHARMENDRASINGH-qc4hp
      @DHARMENDRASINGH-qc4hp 4 года назад +4

      @@masst1961 na bhai abhi nhi dekha

  • @navin346
    @navin346 3 года назад +105

    Block element: A block-level element always starts on a new line.
    A block-level element always takes up the full width available. A block level element has a top and a bottom margin, whereas an inline element does not.
    Inline element: An inline element does not start on a new line. An inline element only takes up as much width as necessary.
    We can change an inline element into a block element(and vice-versa) using display property(display property ki madat se ham block element ko inline aur inline element ko block me change kar sakte hein).
    Display: Inline-block: Allows us to set a width and height on the element. The top and bottom margins/paddings are respected in inline-block.
    Display-inline: The top and bottom margins/paddings are NOT respected.
    Display: block: It is a block element and adds/occupies a whole line.

  • @g__shan
    @g__shan 3 года назад +38

    It happened to the first time in this course - I have not understand anything.....

    • @raniandre
      @raniandre 2 года назад

      hi have you completed learning web development?

  • @abheysachdeva6133
    @abheysachdeva6133 4 года назад +70

    Sir till 23 tutorial it was great..but it is really confusing for a beginner when things are confusing..as in this video after 12th minute..it was not clear at all

    • @jayeshmalviya3528
      @jayeshmalviya3528 4 года назад +1

      yes
      its confusing

    • @abulkalamasif1270
      @abulkalamasif1270 4 года назад

      @Adwait Barkale exactly

    • @arniksen7864
      @arniksen7864 4 года назад

      Practice by urself...everything gonna be cleared...things r very interesting and easy my frnd...

    • @nuclergaming9969
      @nuclergaming9969 3 года назад

      @@arniksen7864 bro what is the best way to practice or learn ?

    • @nuclergaming9969
      @nuclergaming9969 3 года назад +1

      @@arniksen7864 bcoz I'm watching these videos but feel like I haven't learnt anything

  • @harshitachaurasia1246
    @harshitachaurasia1246 4 года назад +76

    Videos that keep me awake and not giving me up!

    • @nuclergaming9969
      @nuclergaming9969 3 года назад +2

      Hey Im getting confused, I feel like I'm not learned anything. Can u plz help me ? Like what should I do ? And how should I do?

    • @harshitachaurasia1246
      @harshitachaurasia1246 3 года назад +4

      @@nuclergaming9969 same here now bro😭

    • @rushigaikwad
      @rushigaikwad 3 года назад +1

      @@harshitachaurasia1246 that was the best reply 😂

    • @harshitachaurasia1246
      @harshitachaurasia1246 3 года назад +1

      @@rushigaikwad 😂😂😂

    • @Pro_Gamer_Boys
      @Pro_Gamer_Boys 3 года назад +2

      Mere toh aadha upper se jarha😂

  • @085-vaibhavgusain9
    @085-vaibhavgusain9 4 года назад +126

    Now its getting out of my head

    • @abulkalamasif1270
      @abulkalamasif1270 4 года назад +14

      watch it again and again and do some practice...

    • @backtobackcosmicflash
      @backtobackcosmicflash 4 года назад +9

      That's because you don't practice it.

    • @chinmaykulkarni6293
      @chinmaykulkarni6293 4 года назад +5

      Refer the net ninja html css crash course to understand inline-block
      Element. He explained it in more proper way

    • @kotharidhruv75
      @kotharidhruv75 4 года назад +2

      my answer isalso same no difference

    • @tpermcubing8139
      @tpermcubing8139 4 года назад +1

      Bro watch it again first I was also getting confused

  • @MrStreamer
    @MrStreamer 4 года назад +34

    Bhaiya Thode Confuse Hogaye Thhey Na?

    • @kotharidhruv75
      @kotharidhruv75 4 года назад +4

      hum bhi bahut zyada confuse hogaye

    • @MrStreamer
      @MrStreamer 4 года назад +4

      @@kotharidhruv75 same here Bhai..

    • @Arixxxverse
      @Arixxxverse 3 года назад +1

      Yes iam also confused minimum 34%

  • @khanapeena2191
    @khanapeena2191 3 года назад +20

    Now. Your videoe becoming messy and confusing to understand to me. In every step.

  • @sakshirao2103
    @sakshirao2103 4 года назад +33

    This was the most confusing tutorial till date.. Seriously, this 15 minutes video took 3 hours to execute in my PC🥺

    • @shivamgoyal7404
      @shivamgoyal7404 4 года назад +4

      i think you not watched from starting every video is fine except this one.

    • @sakshirao2103
      @sakshirao2103 4 года назад +6

      @@shivamgoyal7404 I watched every single Tutorial since the very beginning..But this is very confusing..

    • @shivamgoyal7404
      @shivamgoyal7404 4 года назад +4

      @@sakshirao2103 actually I am doing this course as a revision rather than learning so may be it is confusing for those who are beginners.

    • @aditya._.official
      @aditya._.official 4 года назад +1

      @sakshi rao right i am also very confused 😶

    • @mustafaahmadkhan8962
      @mustafaahmadkhan8962 3 года назад

      1st yh watch karo then harry so u all will understand well

  • @ShadabAhmedKhan-dh2nb
    @ShadabAhmedKhan-dh2nb 3 года назад +96

    We can center only block element using margin:auto , therefore to center inline elements first we need to convert them to block elements. Even in the case of block, first we need to set their width

  • @chiragjaiswal4328
    @chiragjaiswal4328 3 года назад +30

    I just want to include a point that in box-sizing:border-box;
    The width is calculated by adding content+padding+border(not margin).

    • @aakashmehta9390
      @aakashmehta9390 3 года назад

      Thanks bhai 👍

    • @neiljohn2637
      @neiljohn2637 2 года назад

      Even I noticed it while using dev tools but sometimes width = content space alone and I don't know why

  • @its_alveera_naaz
    @its_alveera_naaz 3 года назад +18

    Watching it twice made sense 😀

  • @xoboy4724
    @xoboy4724 4 года назад +59

    bro this playlist is definitely amazing . No doubt at all. It'd be better if you give us some assignment kind of stuff after every video so that we will be familiar to what we are learning .That'd be really helpful .

    • @bharatmishra250
      @bharatmishra250 3 года назад +1

      U can practice or u can download some assignment from Google

  • @minalrathi4661
    @minalrathi4661 4 года назад +8

    Sir...all vidios till are best and was easy to understand...bt it was confusing for me.. the concept of display property is not cleared properly.

  • @yaremix6548
    @yaremix6548 4 года назад +11

    Bro what do you do with notepad++.
    In this entire tutorial?

  • @mohammadasif8281
    @mohammadasif8281 4 года назад +5

    Bhot bhassad krdi bhai 🙁🙁🤷🏼‍♂️

  • @adarshvardhan8440
    @adarshvardhan8440 4 года назад +2

    Bhaiya iss wale video ne Sach me kafi confuse Kiya h 😑

  • @abhaypratap9898
    @abhaypratap9898 3 года назад +6

    I continuously watched this video 4 times 😅😅 , then I got it 😊👍

  • @uniq6318
    @uniq6318 3 года назад +6

    Harry: Let's put image
    Then nope hold my logo 😁
    By the way I'm just kidding🕺

  • @softmedun6794
    @softmedun6794 Год назад +2

    Sir video is not useful
    I could not understand clearly 😔😔

  • @sameerpatel1670
    @sameerpatel1670 3 года назад +1

    Bhaiya sirf aapki he image ki link chal ri hai baki images ki nahe chalri hai....

  • @apoorv7297
    @apoorv7297 2 года назад +8

    It was difficult for me to understand once but i rewatched and it worked for me 👍I think that coding will get more better the more we experiment !

  • @pvremix3042
    @pvremix3042 3 года назад +2

    Harry bhai first time block huva me 23 video me se😛

  • @utkarshpatil3180
    @utkarshpatil3180 2 года назад +22

    2:03 CSS Target, 3:35 centering using margin auto, 5:30 Note, 7:59 inline block, 10:29 box sizing: border box, 12:07 display: inline-block

    • @ATC728
      @ATC728 Год назад

      Display: table ?

  • @kocomputer835
    @kocomputer835 4 года назад +2

    Namasta dada

  • @FactBusterZ
    @FactBusterZ 3 года назад +1

    harry sir mai apke he wesite ko inspect kar ke masti karta hu

  • @emcompare
    @emcompare 11 месяцев назад +1

    This was very confusing lecture and I am confused very much

  • @sushantlimbu4953
    @sushantlimbu4953 2 года назад +1

    because of that < .box incline block> i stucked there for 30 min , i was think y is my thing nt goion right..harry sry plz do edit such mistake because nebee like us wil go nuts hahahahaha anyways thanks

  • @UnexploredDistance
    @UnexploredDistance Год назад +1

    Box ek hi line mei nhi aa rhe float ka use krke ho rhe Harry bhai ki trh se nhi ho rhe chahe jitna block inline block use kr lo

  • @FaithfullyUrs143
    @FaithfullyUrs143 Месяц назад +1

    mind blowing harry bhai but please explain slowly🥲 by the way nice video

  • @edxqwerty
    @edxqwerty Год назад +1

    Video dekhta hu to samjh to aata h par coding karta hu to bhul jata hu yha par likhna kya ???
    Do teen bar dekhna padta ( my problem) Harry bhai kahte h na beginner beginner whi hu 😁😁😁

  • @e.shekaresrampally2926
    @e.shekaresrampally2926 3 года назад +1

    bro i suggest u make a playlist on web development
    i already know u made it its a joke bro lol

  • @noshwor-3301
    @noshwor-3301 Год назад +1

    you are changing values from the console and it makes your videos more confusing to beginners.

  • @soumyaranjansahoo5199
    @soumyaranjansahoo5199 Год назад +1

    imagine what,i just border the header then did text align centre ,bith image and letter go into the middle of the page.

  • @Rade34
    @Rade34 Год назад +1

    6:36 "Ek chiz yahapr dekhna, jb ye bada ho jata hai na mera bohot bda,
    Ek problem create karta hai." - Us bro us

  • @ganeshkale9665
    @ganeshkale9665 2 года назад +5

    Analogies :-
    1)display: inline-block:
    It convert block element into inline and
    also block so that it posses both properties so that it can give the same space to another block.
    2)box-sizing: border-box:
    It justify the each box inside the container and each box give the same respect to each other to apply their properties.

  • @absurdsisyphus9017
    @absurdsisyphus9017 2 года назад +3

    U shouldn't have used img for explanation of this topic, since img is inline block element. Here we can set width and height unlike other inline elements. For those who are getting confused use anchor tag and try to give width, height and margin:auto to it. And u will find u cant, so u need to convert it into block element

  • @anshumanshah9534
    @anshumanshah9534 3 года назад +4

    U made me confused in the middle 🙏🙏

  • @MuhammadUsman-k1g
    @MuhammadUsman-k1g 10 месяцев назад +1

    Thank You Sir Very Helpful video😇😇

  • @ZJSports007
    @ZJSports007 3 года назад +6

    Really interesting way to explain both block and in-line elements in hierarchy of markup language. Thanks a million, Harry for making these videos/tutorials and giving real-life examples and projects.

  • @mohitdudhat4423
    @mohitdudhat4423 2 года назад +1

    Bhai tu to bhohot achhe se samaja ta hai
    tu youtube pe channel kyu nahi kholata?????

  • @paramdave7143
    @paramdave7143 10 месяцев назад +2

    Thank you so much Harry bhai i have solved my display property issue after watching your this video very easily.

  • @SLIME-gx6fo
    @SLIME-gx6fo 2 года назад +5

    Most of the elements that you have learned about so far are block elements. In other words, their default style is display: block. By default, block elements will appear on the page stacked atop each other, each new element starting on a new line.
    Inline elements, however, do not start on a new line. They appear in line with whatever elements they are placed beside. A clear example of an inline element is a link, or tag. If you stick one of these in the middle of a paragraph of text, it will behave like a part of the paragraph. (Like this…) The link’s text will sit alongside other words in that paragraph. Additionally, padding and margin behave differently on inline elements. In general, you do not want to try to put extra padding or margin on inline elements.

  • @Mangesh_65
    @Mangesh_65 Год назад +3

    This is only the best video in whole u tube on display properties where I found to the point explanation.keep it up harry bhai..u r the heart of millions of coders ❤🎉

  • @abhishekpandit6287
    @abhishekpandit6287 3 года назад +1

    ab mzaa aane lga ek no bhai

  • @malikadnan7
    @malikadnan7 2 года назад +1

    It's starting to get a bit confusing from the last one or two lectures.

  • @arindamdutta7369
    @arindamdutta7369 4 года назад +1

    Harry bhai ye video samaj mein nahi aaya phir se explain karke daal doge kya

  • @VaibhavSamdani
    @VaibhavSamdani Год назад +1

    Jisko Kam Samaj aaya vo phle playlist ka lecture 9 check kr le ek bar!

  • @syedsaad75
    @syedsaad75 3 года назад +1

    bro, bht hi ziada confusing tha yeh wala tutorial...

  • @smitkarbhari573
    @smitkarbhari573 3 года назад +2

    I really get confused in Width, margins, padding and inline and block line

  • @kishlayraj5725
    @kishlayraj5725 4 года назад +5

    kuchh log toh mujhe aakar suggest karte h 🤣🤣

  • @Ishikaaa21
    @Ishikaaa21 5 месяцев назад +1

    Muje nhi smj aayi ajj ki class 😓☹️ 2 se 3 bar dekhli 😢

  • @dreamy315
    @dreamy315 3 года назад +2

    pls make new video on this "css display property" didnt understood a single word. everything is confusing here :((

  • @knocknayak
    @knocknayak 3 года назад +1

    Could you plz remake for this part? 🙏🏿🙏🏿🙏🏿, it's making the concept much worst

  • @kids-world-channel-007
    @kids-world-channel-007 3 года назад +1

    at the end mujhy certificate chaye harry bahie

  • @yashshah7546
    @yashshah7546 2 года назад +1

    Very bad video lot of confusion
    didnt like the video

  • @adarshrai9516
    @adarshrai9516 4 года назад +4

    Mast bhai plzz cover each and every topics in this series.
    Thanks for everything.

  • @catsareawesome6925
    @catsareawesome6925 2 года назад +1

    It was going great till now .but this one is so confusing

  • @keshavpatidar3602
    @keshavpatidar3602 4 года назад +3

    First time i confused, i dont learn anything😢

  • @sktamim_01
    @sktamim_01 4 года назад +4

    I'm very thankful to you sir.
    I learned many of things from your video.Thanks for giving us so much for free.
    may god bless you.
    Sir You are great.

  • @muhammadimmad1558
    @muhammadimmad1558 3 месяца назад +1

    harrey bro this vedio is bit confusing

  • @dcvmcuclips6875
    @dcvmcuclips6875 4 года назад +3

    is waly tutorial ne to demagh hila k rakh diya

  • @naman6553
    @naman6553 Год назад +1

    5:35 inline element mai width set nahi kar saktay but apne bina display block kiye mai width set kari hai

  • @lakshaygaming6930
    @lakshaygaming6930 3 года назад +2

    Ye video nhi ayi smjh mein

  • @itsaayush7357
    @itsaayush7357 11 месяцев назад +1

    First lecture where I find hard to understand

  • @milliardinfoworld
    @milliardinfoworld Год назад +1

    In this video, you are moving too fast.

  • @kartikgoel9804
    @kartikgoel9804 4 года назад +2

    bhaiya what is the use of adding classes like container, top when they are not defined in style tag.

  • @kumari-u2j
    @kumari-u2j 7 месяцев назад +1

    concept clear ni hwa display property ka

  • @Moizoref
    @Moizoref Год назад +1

    this is the first video i couldnt understand😞

  • @shivanimodi9933
    @shivanimodi9933 3 года назад +1

    harry bhai thoda araam se idhar sab bouncer gaya

  • @mohdjavedsolanki3653
    @mohdjavedsolanki3653 3 года назад +1

    Bhai yaar kya kiya is video me kuch samaj nahi aaya beginners ke liye he to us hisab se samjavo itna fast thodi hota he koi kuch samaj nahi aaya yaar kya kiya aapne

    • @mohdjavedsolanki3653
      @mohdjavedsolanki3653 3 года назад

      @@Ha_Rsh_ ha bhai me hussain sir ka dekhta hu mast batate he woh ye log apne aap ko jayada smart smjate he inko padana nahi aata

  • @architkumarsingh15
    @architkumarsingh15 4 года назад +9

    And also please make your digital marketing course either free or paid i m ready to take

  • @priyanshukhare6652
    @priyanshukhare6652 4 года назад +4

    Thank you Harry Bhaiya for providing such great playlists and videos for us.

  • @vinayakbhardwaj6837
    @vinayakbhardwaj6837 4 года назад +2

    bhaiya aap ek baar px aur % me difference bata digiye acche se please!! its very confusing....

    • @ShivamSingh-kn3gz
      @ShivamSingh-kn3gz 4 года назад +2

      Pixel is the measure of 1/96 of an inch. While, the percentage is the measure of the portion of the screen, for ex: the whole screen in length and width is 100% each. So, if you want to cover half part of the screen with same elements who will have to use 50% in css, i.e., height: 50%; width: 50% for the element.

  • @khanmuhammad3021
    @khanmuhammad3021 3 года назад +3

    or peoples who are getting confused: " in HTML there are inline and block elements, so with the help of display property you can make an inline element a block element. you can make a block element an inline element".hope this makes sense

  • @pragyachauhan5537
    @pragyachauhan5537 3 года назад +3

    This lecture seems to be very difficult for me idk y 😫🦊 Didn't understood anything 😖

  • @deepakjha3652
    @deepakjha3652 2 года назад +1

    Bhai ye to confuse krdiya aaj aapne 🙂

  • @GRG.TRADER
    @GRG.TRADER 4 года назад +1

    Harry bhai code source achw se kam nwhi kar raa

  • @AlkaSinha-ig2mq
    @AlkaSinha-ig2mq 3 года назад +1

    Sir my image is not visible on the server

  • @061ujjawalsinghal2
    @061ujjawalsinghal2 4 года назад +3

    bhai yrr konsa music lagate ho last me .... bata do pls😊

  • @subscribeinsteadlike2768
    @subscribeinsteadlike2768 2 года назад +4

    Wufff...
    Oh! Harry in this video you were in so hurry that u messed up creating confusions..
    But comment section apologized that..
    Whatsoever you teach awesome ❤️

  • @Rahul_kumar1999
    @Rahul_kumar1999 2 года назад +1

    I am totally confused 🤔🤔🤔🤔

  • @harshit6045
    @harshit6045 2 года назад +5

    For keeping the header in center, a more simple way is to use tag.

  • @Mangesh_65
    @Mangesh_65 Год назад +1

    Best of best explaination Harry bro...accessing this video second time for better understanding of display proeprty❤🎉..got it deeply

  • @Education-wc8th
    @Education-wc8th 3 года назад

    maja nahi aaya ish tutorial me. please aise tutorial mat upload kiya karo.

  • @MayankMehta-e4d
    @MayankMehta-e4d Год назад +1

    harry bhai yaar its soo confusing...

  • @Fam98KK
    @Fam98KK 2 года назад +1

    For this one, the later half was rather confusing

  • @adarshchaudhary7811
    @adarshchaudhary7811 2 года назад +1

    class is not .container its .heading

  • @evilentertainments
    @evilentertainments Год назад +1

    Sir Sab kuch Side by side Nahi Aara ..1 Ke nechay our eak aara..😢

    • @secret6222
      @secret6222 Год назад

      Margin aur width kam karo

  • @ZainAli-sl1vp
    @ZainAli-sl1vp 4 месяца назад +1

    Congragulation for 6M Boss

  • @purple_snake5372
    @purple_snake5372 3 года назад +1

    can someone suggest some websites(if there are any) to actually practise these concepts......it feels like cramming up......

    • @ggmr399
      @ggmr399 3 года назад

      I know a website and it's notepad

    • @purple_snake5372
      @purple_snake5372 3 года назад

      @@ggmr399 i knew that😓

  • @jaydeepchoudhary5685
    @jaydeepchoudhary5685 4 года назад +2

    Could anyone tell me how to get inspect bar horizontally like carry had in his video, because in my laptop its vertical so i m having some problem

    • @sachin_0
      @sachin_0 4 года назад +2

      There is a setting and 3 dot icon in top of inspect bar. One of them will fix ur problem..

    • @ShivamSingh-kn3gz
      @ShivamSingh-kn3gz 4 года назад +1

      That setting is named as dock view

  • @sauravjha378
    @sauravjha378 4 года назад +2

    direct
    header
    {
    text-align:center;
    }
    bhi ker hisakte hai image ko center mai dalne ke liye

  • @kishorgupta3651
    @kishorgupta3651 4 года назад +1

    Harry bhai,
    Actually m abhi ap ki Python ki series access kr rha hu lkin muje vaha per ek problem aa rhi h
    Ap n ek exercise di h new read ki
    Toh us m ek module h win32com
    Us ko mn powershell m ja kr install bhi kr liya lkin pycharm m use kr rha hu toh "no module named win32com" show ho rha h jb ki "IDLE* per m us ko use kr pa rha hu
    Mn bahut google kiya but is k solution nhi mil rha plz ap hi help kr skte ho
    Isi problem ki vja mera ek din pura wast gaya h
    Plz help me.......

  • @bhau1843
    @bhau1843 Год назад +1

    4:25 display:block , inline

  • @jashan0924
    @jashan0924 3 года назад +1

    kuch smj nhi aa rha harry bhai kuch kro

  • @gamberhab3428
    @gamberhab3428 3 года назад +1

    Bhai background img set nahi hora hai!!
    keya karu?