CSS位置:relative和float:left

前端之家收集整理的这篇文章主要介绍了CSS位置:relative和float:left前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
只是一个快速的问题:我可以应用位置相对和浮动左一个元素吗?有人使用它吗?
div {
  float: left;
  position: relative;
  top: 0px;
  left: 0px;
  (...)
}

谢谢!

解决方法

是。

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”

原文链接:https://www.f2er.com/css/220107.html

猜你在找的CSS相关文章