无论屏幕分辨率如何,如何使div容器浮动到屏幕的一侧?

时间:2013-12-08 22:11:53

标签: css html alignment css-position containers

我有一台笔记本电脑和一台台式电脑,桌面是我主要使用的机器。我桌面的显示器尺寸为1920x1080,笔记本电脑的屏幕尺寸为1366x768。我注意到有一天,我一直在处理容器div的项目没有显示在我的笔记本电脑的屏幕上。无论屏幕的分辨率/大小如何,我都需要容器div始终保持在屏幕的右侧。

CSS:

#container {
    margin:0px auto 0 auto;
    height:800px; 
    width:960px; 
    text-align:left; 
    padding-right:0px; 
    float:right; 
    position:relative;
}

1 个答案:

答案 0 :(得分:0)

您可以在margin属性中将第二个auto替换为0。

#container {
  margin: 0 0 0 auto;
  ...
}