常常會忘記的 css
text-decoration
text-decoration: underline;
text-decoration: underline dotted;
text-decoration: underline dotted red;
text-decoration: green wavy underline;
text-decoration: underline overline #FF3028;
Values
-
Sets the kind of decoration used, such as
underlineorline-through. -
Sets the style of the line used for the decoration, such as
solid,wavy, ordashed. -
Sets the color of the decoration.
-
Sets the thickness of the line used for the decoration.
accent-color
check box 的顏色改變
text-transform 控制文章字母的大小寫
<span style="text-transform:uppercase;">Good Morning Piter.</span><br><!--定義所有字母均為大寫-->
<span style="text-transform:lowercase;">Good Morning Piter.</span><br><!--定義所有字母均為小寫-->
<span style="text-transform:capitalize;">Good Morning Piter.</span><!--定義單字的第一個字母大寫,其他字母小寫-->
GOOD MORNING PITER.
good morning piter.
Good Morning Piter.
用 css 判斷是否為 mobile
@media (pointer:none), (pointer:coarse) {
...
}