<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS样式</title>
</head>
<!--
background-attachment:设置背景图片是否随内容滚动
属性值:
fixed 背景不滚动
scroll 背景随内容滚动
-->
<body style="background-image: url(img/456.jpeg);background-attachment:scroll;">
<div style="text-decoration:underline">我是div</div>
<div style="text-transform:uppercase;">我是div</div>
<div style="text-transform:lowercase;">我是div</div>
<div style="text-transform:capitalize;">我是div</div>
<!--
font-variant:设置小型大写字母
属性值:
normal 正常效果
small-caps 小型大写字母
-->
<div style="font-variant:normal;">
hello
</div>
<div style="font-variant:small-caps;">
hello
</div>
<!--
text-indent:首行缩进
属性值:
-->
<div style="text-indent: 2em;">
中午吃什么?史诗级难题.....
</div>
<div style="text-align: left;">
飞翔
</div>
<div style="text-align: center;">
屠天
</div>
<div style="text-align:center ;">
鲱鱼
</div>
<!--
line-height:设置行高
属性值:
px, em , rem ,百分比
-->
<div style="line-height: 30px;">
南水北调
</div>
<!--
letter-spacing:设置字距(设置字母之间的间距)
属性值:
px, em, rem ,百分比
-->
<div style="letter-spacing: 20px;">
我爱你,I Love you !
</div>
<!--
word-spacing:设置词距(设置单词之间的间距,以空格为单位来区分)
属性值:
px, em, rem ,百分比
-->
<div style="word-spacing: 20px;">
我爱你,I Love you!
</div>
<!--
字体设置
-->
<!--
font-family:设置字体类型
属性值:具体的字体类型
-->
<div style="font-family:STKaiti ;">
海阔凭鱼跃,天高任鸟飞!Good good study,Day day up!
</div>
<!--
font-size:设置字体大小
属性值:
px, em, rem ,百分比
-->
<div style="font-size:36px ;">
海阔凭鱼跃,天高任鸟飞!Good good study,Day day up!
</div>
<!--
font-weight:设置字体粗细
属性值:
lighter,normal(正常值),bold, bolder
100,200,300,400,500,600,700,800,900
其中 400 相当于 normal,700 相当于bold
-->
<div style="font-weight: 900;">
海阔凭鱼跃,天高任鸟飞!Good good study,Day day up!
</div>
<!--
font-style:设置字体样式
属性值:
normal 正常字体
italic 斜体
obliqe 字体斜体
-->
<div style="font-style: oblique;">
海阔凭鱼跃,天高任鸟飞!Good good study,Day day up!
</div>
<div style="font-style: italic;">
海阔凭鱼跃,天高任鸟飞!Good good study,Day day up!
</div>
<!--
color :设置字体颜色
属性值:
颜色单词,十六进制颜色,rgb ,rgda
-->
<div style="color: aquamarine;">
海阔凭鱼跃,天高任鸟飞!Good good study,Day day up!
</div>
<div style="color: blanchedalmond;">
海阔凭鱼跃,天高任鸟飞!Good good study,Day day up!
</div>
<!--
background-color:设置背景颜色
属性值:
颜色单词,十六进制颜色,rgb ,rgda
-->
<div style="background-color:red ;width:300px;height: 300px;">
撸起袖子加油干!
</div>
<!--
background-image:设置背景图片
属性值:url(图片的路径)
-->
<div style="height: 300px;background-image:url(img/123.jpg) ;">
撸起袖子加油干!
</div>
<!--
background-repeat:设置背景图片是否平铺
属性值:
repeat 平铺
no-repeat 不平铺
repeat-x 只在水平方向上平铺
repeat-y 只在垂直方向上平铺
-->
<div style="height: 300px;background-image:url(img/123.jpg);background-repeat: repeat;">
撸起袖子加油干!
</div>
<!--
background-position:设置背景图片的位置
属性值:
1.left, right,top,bottom,center两两组合形成的 九个
2.x% y%(百分比)
3.xpx ypx(像素值)
-->
<div style="height: 300px;background-image:url(img/456.jpeg);background-repeat: no-repeat;background-position:center center ;">
撸起袖子加油干!
</div>
</body>
</html>