1.Text:CSS 文本格式
body {color:blue;}
h1 {color:#00ff00;}
h2 {color:rgb(255,0,0);
A.text-align:文本对齐方式
B.text-decoration:文本修饰
(1.用来删除链接的下划线: a {text-decoration:none;})
(2.也可以这样装饰文字:
h1 {text-decoration:overline;}
h2 {text-decoration:line-through;}
h3 {text-decoration:underline;}
)
C.text-transform: 文本替换 (可用于所有字句变成大写或小写字母,或每个单词的首字母大写)
p.uppercase {text-transform:uppercase;}:大写
p.lowercase {text-transform:lowercase;}:小写
p.capitalize {text-transform:capitalize;}:首字母大写
当text-align设置为"justify",每一行被展开为宽度相等,左,右外边距是对齐(如杂志和报纸)。
时间: 2024-10-12 12:39:53