Home  >  Article  >  Web Front-end  >  让div居中对齐的css样式_html/css_WEB-ITnose

让div居中对齐的css样式_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 12:28:021767browse

Code

 

居中div效果

 

使用margin-left:auto;margin-right:auto; 可以让你的div居中对齐。
.style{margin-left:auto;margin-right:auto;}
缩写形式为:
.style{margin:0 auto;}
数字0 表示上下边距是0。可以按照需要设置成不同的值。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn