摘要:
body{ width:100%; height:100%; background-color:#f00; } 从以上代码可以看出 body 的背景颜色并没有想我们想的那样铺满整个背景; 解决方法:也要设置父元素的高度,即可 html,body{ width:100%; height:100%; b 阅读全文
摘要:
使用inline-block后,该标签下方出现一片空白,使用vertical-align: bottom; 或者vertical-align:top;就可以了。 阅读全文
摘要:
可以给内部的元素固定宽高,然后配合position和margin-left,margin-top是自身的一半居中。如里面包裹字体的元素为span,设置span:width:20px;height:20px;position:absolute;left:50%;top:50%;margin-left: 阅读全文