Align divs horizontally

前端 未结 3 795
臣服心动
臣服心动 2021-01-20 01:46

I have the following Divs:

   
\"notch\"/
3条回答
  •  北荒
    北荒 (楼主)
    2021-01-20 02:20

    Apply a float:left on .custimage

    .custimage{
       position:relative;
       margin-top: 15px;
       margin-left: 15px;
       height: 170px;
       width: 130px;
       background-color: #999;
       text-align:left;
       float: left;  // float all cust images to the left so they stack up against each other
    }
    

提交回复
热议问题