Login
Create new posts
At least 10 characters
ChineseEnglishJapaneseRussian
Register
比如
.dummy { text-decoration-line: underline; text-decoration-style: solid; /* 有没有都不影响 */ text-decoration-color: currentcolor; /* 有没有都不影响 */ }
这样写就没有效果,不展示下划线。一定要这样写:
.dummy { text-decoration: underline; }
才行。
这是为什么呢?这是可预期的行为吗?