0

所以我有一个导航菜单,我漂浮在左边。我想在不影响容器的情况下将其更向右移动。当我使用填充或边距时,它会移动它,当我尝试时

 position: absolute;

它只是将容器移动到左侧并将其最小化。

[解决]

感谢所有帮助,对于 html/css 来说还是很新的。

4

2 回答 2

0

你正在寻找

position: relative;
left: 100px; /* or however far you want to move it to the right */
于 2013-02-02T15:47:25.603 回答
0

在菜单上

position: absolute; 
margin-left: 100px;
于 2013-02-02T15:49:44.957 回答