网站推广.NET

网站推广.NET

css中auto是什么意思

来源:互联网

本教程操作环境:windows7系统、CSS3&&HTML5版、Dell G3电脑。

css中的auto是自动适应的意思,而在css中auto往往都是默认值。

正如margin:0 auto,意思就是上下边距为0,左右边距为auto,就是自动适应。

但是,如果要使用他的话,就必须给标签配上指定的宽度,如下:

立即学习“前端免费学习笔记(深入)”;

<style type="text/css">.center{    width:200px;    height:200px;    margin:0 auto;}</style><p  class="center">居中</p>

另外,margin:0 auto 和 margin: 0 auto 0 auto 的效果是相同的。

都是指的上下边距为0,左右边距自动适应宽度相等。

推荐学习:css视频教程

标签: automatical

抱歉,评论功能暂时关闭!