text-decoration-style
文字
那条线是实线、虚线还是波浪线。
| 怎么写 | text-decoration-style: solid; |
|---|---|
| 常用的值 | solid, wavy, dotted, dashed |
| 继承 | 不往下传,到这个元素为止 |
| 属于这个简写 | text-decoration |
| 分类 | 文字 |
怎么看这一页
- 会继承的属性,在父元素上写一次,所有子元素都跟着用。和文字有关的属性大多如此。
- 简写属性会把你没写到的值悄悄退回默认值。只写 background: red,先前设的背景图也一并没了。
- 同一个元素上规则撞车时,选择器越具体的赢。只有具体度一样时,才轮到写在后面的赢。
- 做动效尽量用 transform 和 opacity,会顺滑得多。改 width 或 top 得重新算一遍布局。
常见问题
Q. CSS 的 text-decoration-style 属性是做什么的?
那条线是实线、虚线还是波浪线。
Q. text-decoration-style 怎么写?
写成 text-decoration-style: solid; 这样。常用的值有 solid、wavy、dotted、dashed 等。
Q. text-decoration-style 会传给子元素吗?
不会。需要的元素得各写各的。
Q. 有没有能一次设定 text-decoration-style 的简写属性?
可以用 text-decoration 一次设好。