猿问

CSS中的AUTO的意思

语法: 

margin : auto | length 

参数: 

auto : 值被设置为相对边的值
_________________________________________

我没看懂 auto 的意思,谁能解释下啊/

有只小跳蛙
浏览 1008回答 2
2回答

三国纷争

css中auto表示自动的意思。比如:.box{width:auto;heigght:30px;}这里的意思就是,box这个容器的宽度自动,高度为30像素。

慕无忌1623718

让浏览器自动选择合适的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>
随时随地看视频慕课网APP

相关分类

CSS3
我要回答