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.
所以——在构建了一个包含大量类似类样式的元素的页面之后——客户决定他想要改变一些事情。我不想手动更改每个 HTML 元素,那么有没有办法根据整个页面简单地定位它们(通过 CSS)?
(即纯 CSS 的东西;当然,一些 javascript 可以完成它)
您可以设置一个位置:相对;在祖先标签上,然后使用 position:absolute; 在任何你需要移动的地方。您可以使用 top、right、bottom、left 规则来相对于 body 标签定位项目。
ancestorSelector { position:relative; } somethingToMoveSelector { position:absolute; top:100px; left:250px; }
更多关于 CSS 定位