/* 设置文本大小 */ p { font-size: 18px; } /* 设置文本颜色 */ p { color: #333; } /* 设置文本字体样式 */ p { font-family: Arial, sans-serif; } /* 设置字体加粗 */ p { font-weight: bold; } /* 设置斜体字 */ p { font-style: italic; } /* 设置下划线 */ p { text-decoration: underline; } /* 设置删除线 */ p { text-decoration: line-through; } /* 设置文本水平居中 */ p { text-align: center; } /* 设置行高 */ p { line-height: 1.5; }
通过这些CSS属性的练习,大家不仅可以掌握CSS文本样式的基本应用,还可以根据不同需求对文本进行更细致的处理。另外,对于新手来说,更多的练习也会加深对CSS的理解和记忆。