Align images horizontally CSS

前端 未结 5 2120
轻奢々
轻奢々 2020-12-20 15:57

I want to align my three images horizontally instead of vertically what is the easiest way to achieve this? example

5条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-20 16:06

    Display the divs as inline-block like so :

    #christmas_promotion_boxes div {
      display: inline-block;
    }
    

    Fiddle

提交回复
热议问题