本文共 647 字,大约阅读时间需要 2 分钟。
div{ width: 400px; height: 300px; margin: 0 auto; background-color: #666; display: table-cell; text-align: center; vertical-align: middle;}img{ width: 200px;}
1.如果将给div设置display:table-cell,那么div就变成了行内块级元素。
2.如果div中有多重图片,那么会呈现这个效果。div{ width: 400px; height: 300px; margin: 0 auto; background-color: #666; position: relative;}img{ width: 200px; height: 112px; position: absolute; top: 50%; left: 50%; margin-top: -56px; margin-left: -100px;
转载地址:http://yqaxa.baihongyu.com/