本文介绍了如何拥有“margin:auto”和“margin-left:offset”一起工作?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的上有一个容器:

#container {
  margin: 0 auto;
}

然后我添加了左侧垂直菜单和一些小屏幕菜单不是

像我的旧笔记本电脑: - )

Then I added the left vertical menu and on some small screens that menu is not fully visible.
Like my old laptop :-)

我想保留 margin:auto 设置,但我想将整个 #container 移动到右边。

I want to keep the margin:auto setting in place but I want to move the whole #container a little bit to the right.

我试过了 #container {margin-left:10px;} code>,但无效。

I have tried #container {margin-left:10px;}, but to no avail.

推荐答案

使用firebug,很好用:

Playing with firebug, it's good to use:

#container {
 margin: 0 auto;
 position:relative;
 left:10px;
}

希望它解决...

这篇关于如何拥有“margin:auto”和“margin-left:offset”一起工作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 07:03