登入
发表新帖子
至少 10 个字
汉语英语日语俄语
注册
比如
.dummy { text-decoration-line: underline; text-decoration-style: solid; /* 有没有都不影响 */ text-decoration-color: currentcolor; /* 有没有都不影响 */ }
这样写就没有效果,不展示下划线。一定要这样写:
.dummy { text-decoration: underline; }
才行。
这是为什么呢?这是可预期的行为吗?