我的身体里有 1 个容器 ( width:800px
)。
如果有足够的空间(屏幕宽度 >(800 像素 + 边距)),容器的一侧应该有边距,但如果屏幕宽度 <= 800 像素,则没有边距。
如何?
更新 - 一些代码:
<style>
body {
margin: 0;
}
#container {
display: block;
float: right;
width: 800px;
height: 100%;
background-color: #474747;
margin-right: 100px;
}
</style>
<body>
<div id="container">TODO write content</div>
</body>