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.
所以我有一个导航菜单,我漂浮在左边。我想在不影响容器的情况下将其更向右移动。当我使用填充或边距时,它会移动它,当我尝试时
position: absolute;
它只是将容器移动到左侧并将其最小化。
[解决]
感谢所有帮助,对于 html/css 来说还是很新的。
你正在寻找
position: relative; left: 100px; /* or however far you want to move it to the right */
在菜单上
position: absolute; margin-left: 100px;