Can I combine position: relative and float: left?

前端 未结 5 1613
逝去的感伤
逝去的感伤 2021-02-01 14:40

Can I apply both position: relative and float: left on one element? Like this:

div {
  float: left;
  position: relative;
  top: 0px;
          


        
5条回答
  •  旧时难觅i
    2021-02-01 15:40

    Yes.

    CSS2.1, 9.4.3:

    "Once a box has been laid out according to the normal flow or floated, it may be shifted relative to this position. This is called relative positioning"

提交回复
热议问题