居中

来源:互联网 发布:澳门网络博客网站 编辑:程序博客网 时间:2024/05/01 02:30

水平居中

1、
HTML

<div class="test">        <img src="images/mlbtag.jpg" alt="" class="test2"></div>

CSS

.test{width: 100%;}.test2{    margin: 0 auto;    display: block;}

2、
HTML

<div class="test">        <img src="images/mlbtag.jpg" alt="" class="test2"></div>

CSS

.test{width: 100%;text-align: center;}
0 0
原创粉丝点击