語法: margin : auto | length 參數(shù): auto : 值被設置為相對邊的值_________________________________________我沒看懂 auto 的意思,誰能解釋下啊/
2 回答

三國紛爭
TA貢獻1804條經(jīng)驗 獲得超7個贊
css中auto表示自動的意思。比如:
.box{width:auto;heigght:30px;}
這里的意思就是,box這個容器的寬度自動,高度為30像素。

慕無忌1623718
TA貢獻1744條經(jīng)驗 獲得超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 關注
- 1051 瀏覽
添加回答
舉報
0/150
提交
取消