语法: margin : auto | length 参数: auto : 值被设置为相对边的值_________________________________________我没看懂 auto 的意思,谁能解释下啊/
2 回答
三国纷争
TA贡献1804条经验 获得超7个赞
css中auto表示自动的意思。比如:
.box{width:auto;heigght:30px;}
这里的意思就是,box这个容器的宽度自动,高度为30像素。
慕无忌1623718
TA贡献1744条经验 获得超4个赞
让浏览器自动选择合适的margin(页边距)大小
下面有个例子
<html>
<head>
<style type="text/css">
p.leftmargin {margin-left: 20px}
p.automargin {margin-left: auto}
</style>
</head>
<body>
<p class="automargin">这是auto margin的结果</p>
<p class="leftmargin">margin-left: 20px 页边距为20的显示结果</p>
</body>
</html>
- 2 回答
- 0 关注
- 1007 浏览
添加回答
举报
0/150
提交
取消