<style>
tr{ width: 200px height: 40px border:1px #000 solid display: block}
/* 双行颜色 */
tr:nth-child(2n){ background: red}
/* 单行颜色 */
tr:nth-child(2n+1){ background: yellow}
</style> <body>
<table border="0">
<tr></tr>
<tr></tr>
<tr></tr>
<tr></tr>
</table>
</body>
在CSS中,line-height被用来控制行与行之间垂直距离。也可以使用letter-spacing:*px来控制文字间距,*px是指间距像素。
不过,行间距与半行间距,还是取决于CSS中的line-height。
默认状态,浏览器使用1.0-1.2 line-height, 这是一个初始值。可以定义line-height属性来覆盖初始值:p{line-height:140%}。
那5种line-height写法,可以在font属性中缩写。line-height的值紧跟着font-size值使用斜杠分开,如:<font-size>/<line-height>。
实例:body{font:100%/normal arial} , body{font:100%/120% arial} ,body{font:100%/1.2 arial} ,body{font:100%/25px arial}