CSS-Text
文子縮進Indent
p {
text-indent: 30px;
}
文字對齊align
left貼左、right貼右、center中間、justify兩邊貼齊
p {
text-indent: 35px;
text-align: justify;
}
th {
text-align: center;
}
td {
text-align: right;
}
文字裝飾Decoration
h1 {
text-decoration: underline; } h2 { text-decoration: overline; } h3 { text-decoration: line-through; }例子 未完.....待續...........
decoration