How do you float elements without a vertical gap?

后端 未结 9 1986
野的像风
野的像风 2020-11-30 16:03

I am trying to float elements left. Here is my css:

width: 320px;
float: left;
border: 1px solid #ccc;
margin-top: 10px;
margin-right: 10px;
border-radius: 5         


        
9条回答
  •  萌比男神i
    2020-11-30 16:36

    Is this updated Fiddle this what you're looking for?

    HTML:

    .one {
      float: left;
      width: 50px;
      background-color: lightblue;
    }
    
    .two {
      float: left;
      width: 50px;
      background-color: pink;
    }
    
    .oneone {
      float: left;
      width: 50px;
      background-color: orange;
    }
    .onetwo {
      float: left;
      width: 50px;
      background-color: lightgreen;
    }
    oneone

    again

    onetwo

    again

    two

    etfgb

    sfsd

    update

    Check the updated Fiddle in the top of my answer.

提交回复
热议问题