背景色(background)
CSS | Value | Example |
---|---|---|
background-color | 十六进制:#FFFFFF、RGB:rgb(0,255,255)、常用背景色名称:green,推荐使用十六进制 | style="background-color:#ABFF00" |
CSS | Value | Example |
---|---|---|
color | green | style="color:green;" |
font-size | 数值:14px(只会截取数值) | style="font-size:14px" |
font-family | Times New Roman(不支持备选字体) | style="font-family:Times New Roman" |
font-style | italic | style="font-style:italic" |
font-weight | bold | style="font-weight:bold" |
text-decoration | line-through、underline | style="text-decoration: underline" |
隐藏(visibility)
CSS | Value | Example |
---|---|---|
visibility | hidden:隐藏,目前仅设置在tr上生效 | < tr style="visibility: hidden" > |