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 元素的屏幕设置相对位置值。我该怎么做?
我知道你可以例如属性width :50%,但我可以对定位做同样的事情吗?
谢谢
是的,您可以将它用于位置、边距或填充。
#Container { width:50%; margin-left:25%; padding-left:10%; }
是的 - 您可以为边距和填充属性使用百分比。
.element { margin-left: 25%; }