标签:height color css 设置 span 外边距 总结 缩小 blog
定位:定位在中间,放大缩小时也不会跑偏。
position:absolute; top: 50%; left: 50%; margin: -270px 0 0 -455px;
解释:定位后,设百分比的位置,再设置外边距。
浮动:span等行内元素不能设置宽高,但在浮动后可以设置宽高。
1 <style> 2 span { 3 width: 200px; 4 height: 200px; 5 background: red; 6 float: left; 7 } 8 </style> 9 <span>qqq</span>
标签:height color css 设置 span 外边距 总结 缩小 blog
原文地址:http://www.cnblogs.com/zuojiayi/p/6529673.html