标签:add 样式 bsp style pre otto top bottom class
1、单个方向的样式
padding-top: 100px;
padding-right: 100px;
padding-bottom: 100px;
padding-left: 100px;
2、复合样式
padding: 100px; /*4个方向都是100px*/
padding: 100px 50px; /*上下是100px,左右是50*/
padding: 100px 50px 20px; /*上是100px,左右是50px,下是20px*/
padding: 100px 50px 20px 10px; /*上右下左分别是100px,50px,20px,10px*/
标签:add 样式 bsp style pre otto top bottom class
原文地址:http://www.cnblogs.com/halai/p/6789765.html