Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使元素脱离正常流程的 CSS 属性是什么?此类属性将是 float、position:absolute 等。
这个问题涉及正常流量的所有可能变化。
只有以下属性会影响任何给定元素的正常流动:
float: right|left
position: absolute|fixed
只是为了完整性:
display: none从流中移除元素(严格来说,元素不会有流序)
display: none
position: relative不会改变元素的流动顺序,但会改变其相对于正常流动位置的位置。
position: relative
visibility: hidden将保持流上的元素,但不会将其渲染到视口。
visibility: hidden