<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>常用的修改文字样式的CSS属性</title>
</head>
<body>
<div>
这是div盒子
</div>
<i>
i文字倾斜标签
</i>
<h1>H1标题</h1>
<hr>
<p class="sop">
123456abcdef
</p>
<a href="http://www.baidu.com">百度</a>
<!--<p>i love You</p>-->
<p class="longp">
常用的修改文字样式的CSS属性
</p>
<style>
div{
/* 设置字体大小font-size */
font-size:50px;
/* 设置字体的粗细font-weight,将文字加粗设置为bold */
font-weight:bold;
/* 设置字体风格font-style,取值normal通常是将倾斜字体设置为不倾斜,italic是将正常字体设置倾斜的 */
font-style:normal;
/* 设置字体font-family,字体可以写多个 */
font-family:"华文行楷","微软雅黑","宋体";
}
i{
font-style:normal;
}
h1{
font-weight:normal;
color: aquamarine;
}
.sop{
font-family:"webdings";
font-size:20px;
}
.longp{
/* 文本转换,text-transform
取值:
uppercase将所有字母转换成大写
capitalize所有单词的首字母大写
lowercase将所有字母转换为小写
*/
text-transform:lowercase;
/* 文本对齐方式text-align,
取值:
left/center/right
*/
text-align:left;
/* 首行缩进
text-indent:2em;
*/
/*text-indent:32px;*/
text-indent:2em;
}
a{
/* 文本修饰text-decoration
取值:
none 取消文本的修饰
line-through贯穿线(删除线)
上划线overline
下划线underline
*/
text-decoration:underline;
/* 文字颜色 */
color:#000;
}
</style>
</body>
</html>
总结:
属性名 | 解释 | font-size: 50px; | 字体大小为50像素 | font-weight: bold;
font-weight: normal; | 字体加粗
取消字体加粗 | font-style: italic;
font-style: normal; | 字体倾斜
取消字体倾斜 | font-family: "华文行楷","微软雅黑","宋体";
| 优先使用华文行楷,如果没有则用微软雅黑,如果没有则用宋体 | color: aquamarine;
color: #000; | 设置字体颜色为CSS内置颜色aquamarine
设置字体颜色为16进制颜色 #000 | text-transform:lowercase;
text-transform:uppercase;
text-transform:capitalize; | 将所有字母转换为小写
将所有字母转换成大写
所有单词的首字母大写 | text-align:left;
text-align:right;
text-align:center; | 左对齐
右对齐
居中对齐 | text-indent:2em;
text-indent:32px; | 首行缩进两个字
首行缩进32像素 | text-decoration:underline;
text-decoration:overline;
text-decoration:line-through;
text-decoration:none; | 下划线
上划线
删除线
取消文本修饰 | text-shadow:-5px -5px 2px #999; | 设置文字阴影,参数一为阴影的水平偏移,参数二为垂直偏移,参数三为模糊距离,参数四为阴影颜色 |
请注意:课程中讲到的属性务必记住,因为这些都是最常用的。
文字阴影案例
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>文字阴影</title>
</head>
<style>
body{
background:#999;
}
.box{
font-size:100px;
font-weight:bold;
color:#999;
/*参数可以设置多组,表示多个阴影*/
text-shadow:-10px -10px 2px #000,1px 1px 2px #fff;
}
</style>
<body>
<div class="box">
慈众科技
</div>
</body>
</html>
显示结果如下:
|