css 问题 margin: 0 200px
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 问题 margin: 0 200px相关的知识,希望对你有一定的参考价值。
margin 后面的两个属性值分别对应着什么属性呢
按顺时针排列,四个数字分别对应:margin-top margin-right margin-bottom margin-left,只写0 200px 是相互对称 0 200PX 0 200PX; 这个是简便的缩写 参考技术A 前者表示页边上下空白大小,后者表示页边左右空白大小 参考技术B 语法:margin : auto | length
参数:
auto : 值被设置为相对边的值
length : 由浮点数字和单位标识符组成的长度值 | 百分数。百分数是基于父对象的高度。对于内联对象来说,左右外延边距可以是负数值。请参阅长度单位
说明:
检索或设置对象四边的外延边距。
如果提供全部四个参数值,将按上-右-下-左的顺序作用于四边。
如果只提供一个,将用于全部的四边。
如果提供两个,第一个用于上-下,第二个用于左-右。
如果提供三个,第一个用于上,第二个用于左-右,第三个用于下。
内联对象要使用该属性,必须先设定对象的height或width属性,或者设定position属性为absolute。
在IE4+,margin属性不可用于td和tr对象。
外延边距始终透明。
对应的脚本特性为margin。请参阅我编写的其他书目。
关于对象的尺寸与边框,内外补丁等样式表属性的关系,请参看图例以及height和width属性。
示例:
body margin: 36pt 24pt 36pt;
body margin: 11.5%;
body margin: 10% 10% 10% 10%; 本回答被提问者采纳
CSS 之 嵌套 margin-top 处理
如下代码:
<div style=" width:1000px; height:700px; margin:auto;"> <div style=" width:1000px; height:49px; margin-top:281px; "> <span style="display:inline-block; width:121px; height:49px; margin-left:230px;"> <a href="#"> <img name="r2_c2" src="shc.png" width="121" height="49" border="0" id="btn1" alt="" /> </a> </span> </div> </div>
会发现,内层div的margin-top显示在了外层div上。
这个“问题”……它是CSS2.1的盒模型中规定的内容——Collapsing margins:
In this specification, the expression collapsing margins means that adjoining margins (no non-empty content, padding or border areas or clearance separate them) of two or more boxes (which may be next to one another or nested) combine to form a single margin.
所有毗邻的两个或更多盒元素的margin将会合并为一个margin共享之。毗邻的定义为:同级或者嵌套的盒元素,并且它们之间没有非空内容、Padding或Border分隔。
解决方案:
给 Outer Div 加上 padding/border,或者
1.给父层添加:overflow:hidden;
2.给父层添加:padding 或 border除none以外的属性
3.给父层添加:padding-top代替margin-top的效果。
4.给 外层 Div / 内层 Div 设置为 float/position:absolute(CSS2.1规定浮动元素和绝对定位元素不参与Margin折叠)。
以上是关于css 问题 margin: 0 200px的主要内容,如果未能解决你的问题,请参考以下文章