CSS字体斜体p{ font-family: Arial, sans-serif; // 设置字体 font-size: 18px; // 设置字体大小 line-height: 1.5; // 设置行高 color: #333333; // 设置字体颜色 margin-bottom: 20px; // 设置段落下边距 } pre{ font-family: Consolas, monospace; // 设置代码块字体 font-size: 16px; // 设置代码块字体大小 color: #7C3F3F; // 设置代码块字体颜色 background-color: #F0EFEF; // 设置代码块背景色 padding: 10px; // 设置代码块内边距 border: 1px solid #E0DADA; // 设置代码块边框 overflow: auto; // 设置代码块溢出显示滚动条 white-space: pre-wrap; // 设置代码块空白符保留和折行 word-wrap: break-word; margin-bottom: 20px; // 设置代码块下边距 } .s1{ font-style: normal; // 设置字体为正常字体 } .s2{ font-style: italic; // 设置字体为斜体 }
这是一段正常的文字。
这是一段使用普通文本样式的文字。
这是一段使用斜体样式的文字。
/* 展示使用斜体样式的CSS代码 */
.s1{
font-style: normal;
}
.s2{
font-style: italic;
}