Learn CSS margins in 5 minutes! ↔️

Поділитися
Вставка
  • Опубліковано 13 гру 2024

КОМЕНТАРІ • 34

  • @BroCodez
    @BroCodez  Рік тому +27

    Bro Code

    Box 1
    Box 2
    /* style.css */
    body{
    margin: 0px;
    }
    .box{
    border: 5px solid;
    font-size: 5em;
    width: 250px;
    height: 250px;
    margin-top: 50px;
    margin-right: 50px;
    margin-bottom: 50px;
    margin-left: 50px;
    }
    #box1{
    background-color: hsl(0, 100%, 60%);
    }
    #box2{
    background-color: hsl(189, 100%, 55%);
    }

  • @imrane206
    @imrane206 Рік тому +37

    bro is a legend

    • @samisado6331
      @samisado6331 10 місяців тому

      M9wed had sat, kayshr7 khir men les profs

    • @imrane206
      @imrane206 10 місяців тому +1

      @@samisado6331 check point l m4arba li 4aydozo hna

    • @ElysiumGresit
      @ElysiumGresit 7 місяців тому

      Bro visited his friend

    • @imrane206
      @imrane206 7 місяців тому

      @@ElysiumGresit lol

    • @MOHAMED-dn6ue
      @MOHAMED-dn6ue 5 місяців тому

      ​@@imrane206 margin w padding w font-size w lakhra nsitha ba9i mafhmtch logique fihom

  • @Budywieser
    @Budywieser 11 місяців тому +5

    Wow you help me alot understanding stuff about html and css. Thanks alot!

  • @pragyas_direction
    @pragyas_direction 5 місяців тому

    Really helpful for understanding margin concept

  • @deriver7353
    @deriver7353 Рік тому +1

    it's clear and easy to understand the usage.

  • @RickWoellert
    @RickWoellert Місяць тому

    Nice Video. margin-left: auto; with margin-right: auto; is also a good combination.

  • @jainagulzamirbekovna9355
    @jainagulzamirbekovna9355 5 місяців тому +1

    I like the way you have expalined I am starting to learn it, thanks for your short and clear explanation.

  • @tinnguyentrung5044
    @tinnguyentrung5044 Місяць тому

    love your sharing. Short & easy to understand

  • @Triny-i5t
    @Triny-i5t 2 місяці тому

    Thanks man your videos have really helped me to master css. Sincerely you are best youtuber when it comes to explaining any code related stuff.

  • @StylishBanditSlayerS
    @StylishBanditSlayerS 10 місяців тому +1

    Thank You So Much!!!! This Is So UseFull For Us!!!!

  • @CầnbiếtKo-k5i
    @CầnbiếtKo-k5i Рік тому +1

    video của bạn rất hay

  • @kimberlylatifa1958
    @kimberlylatifa1958 2 місяці тому

    Great thank you

  • @NASEERULLAH-hj7rc
    @NASEERULLAH-hj7rc 7 місяців тому

    Genius of the Century

  • @Meoww21375
    @Meoww21375 Рік тому +1

    Love you Bro I missed you too much😭🤧

  • @ragaswarupa4372
    @ragaswarupa4372 10 місяців тому

    THIS IS GOOD

  • @Dr.Mohandes
    @Dr.Mohandes 8 місяців тому

    thanks bro, it helped me

  • @Nevena-mp8lb
    @Nevena-mp8lb 5 місяців тому

    Thank you soo much

  • @BigReserve
    @BigReserve 9 днів тому

    ty brother

  • @wilfredalexander8102
    @wilfredalexander8102 Рік тому +1

    Couldn't have said enough thank you

  • @GAMINGDEADCRACKER
    @GAMINGDEADCRACKER 4 місяці тому

    Can you please explain the margin: inherent

  • @RobertTripp-i7w
    @RobertTripp-i7w 8 місяців тому

    Why do you use class and id within the same div again?

  • @Thisisyoutube-o6q
    @Thisisyoutube-o6q 4 місяці тому

    Was that a Shrek reference? 😉

  • @RjBacalla
    @RjBacalla Рік тому +1

    Hello I just want to ask. what is the difference of class and id? thank youu

    • @tnl_binex
      @tnl_binex Рік тому

      I think we use id to track / find element with java script like (get element by id)

    • @CrazyAOT
      @CrazyAOT 11 місяців тому

      There isn't really a difference

    • @TheRetiredBatman
      @TheRetiredBatman 11 місяців тому +1

      I think class can be used for multiple stuff at the same time but ID not? Im not sure

    • @kavish.agrawal
      @kavish.agrawal 10 місяців тому +5

      ID is used to uniquely identify an element(a unique identifier). It is particularly useful when you want only 1 element to have specific styling.
      Another use is in JavaScript. JS uses getElementbyID to call upon an element to perform specific tasks.
      Class is used to define styling for HTML elements. It can be used multiple times, meaning that multiple elements can use the same class to style.

    • @Lee-mt9nr
      @Lee-mt9nr 8 місяців тому

      @@TheRetiredBatman Your're right.