/* 1. 字体样式 */ /* 设置字体类型 */ font-family: Arial, sans-serif; /* 设置字体大小 */ font-size: 14px; /* 设置字体加粗 */ font-weight: bold; /* 设置字体斜体 */ font-style: italic; /* 2. 文本样式 */ /* 设置文本颜色 */ color: #333; /* 设置文本对齐方式 */ text-align: center; /* 设置文本装饰 */ text-decoration: underline; /* 3. 背景样式 */ /* 设置背景颜色 */ background-color: #f5f5f5; /* 设置背景图片 */ background-image: url("bg.png"); /* 设置背景图片位置 */ background-position: center center; /* 4. 边框样式 */ /* 设置边框样式 */ border-style: solid; /* 设置边框宽度 */ border-width: 1px; /* 设置边框颜色 */ border-color: #ccc;
以上是几种常用的CSS样式修饰标记,可以根据实际需求进行使用。CSS样式修饰标记的语法比较简单,对于初学者来说也比较容易上手。希望大家可以多加练习,掌握这种强大的样式修饰语言。