auto是自适应的意思,auto是很多尺寸值的默认值,也就是由浏览器自动计算。
正如margin:0 auto
,意思就是上下边距为0,左右边距为auto,就是自动适应。
推荐学习:CSS视频教程(公益免费)
但是,如果要使用他的话,就必须给标签配上指定的宽度,如下:
<style type="text/css"> .center{ width:200px; height:200px; margin:0 auto; } </style> <div class="center">居中</div>
另外,margin:0 auto
和 margin: 0 auto 0 auto
的效果是相同的。
都是指的上下边距为0,左右边距自动适应宽度相等。
以上就是CSS auto是什么意思?的详细内容,更多请关注易知道|edz.cc其它相关文章!