在CSS中,我們可以使用以下屬性來設置文字的樣式和屬性。
/*設置文字顏色*/ color: red; /*設置文字大小*/ font-size: 16px; /*設置字體樣式*/ font-family: Arial, sans-serif; /*設置文字加粗*/ font-weight: bold; /*設置文字斜體*/ font-style: italic; /*設置文字下劃線*/ text-decoration: underline; /*設置文字刪除線*/ text-decoration: line-through; /*設置文字對齊方式*/ text-align: center; /*設置文字縮進*/ text-indent: 2em; /*設置行高*/ line-height: 1.5; /*設置文字間距*/ letter-spacing: 1px;
以上就是CSS中常用的文字屬性。通過這些屬性的組合,我們可以輕松地調整文字的樣式和排版,使網頁看起來更加美觀。