<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS样式</title>
<style type="text/css">
p{
/* 文字相关的CSS */
/* font-family:设置字体*/
font-family: "翩翩体-简";
/* font-style:设置字体样式 oblique & italic:让文字倾斜*/
font-style: oblique;
/* font-weight:字体粗细。 bold & bolder:是字体加粗。
lighter & 100~900(数值):使字体变细。*/
font-weight: lighter;
/* 谷歌浏览器下,font-size、最小为12px*/
/* em:倍数 */
font-size: 1em;
/* font:是符合属性 可以把上述所说的(font-[____])属性都放在这里。*/
font:;
/* 分本相关的CSS*/
/* underline:下划线
overline:上划线
none:取消下划线
line-through:贯穿线 & 删除线*/
text-decoration: line-through;
/* text-indent:首行缩进*/
text-indent: 2em;
padding-left: 100px;
margin-top: 100px;
/* 对其方式 justify:两端对齐 */
text-align: justify;
line-height: 30px;
/* worl-spacing:单词的距离
letter-spacing:字符的距离*/
letter-spacing: 2px;
}
a{
text-decoration: none;
}
-做一个银行卡的练习
</style>
</head>
<body>
<p>
新华社成都7月7日电(记者张汨汨、黄书波)作为“航空工业一支特殊生产力”,试飞员,在运-20的设计研制过程中,同样浸透了他们的汗水。在7日召开的空军运-20飞机列装首飞记者见面会上,运-20试飞小组的2位试飞员——邓友明、张景亭来到现场,回顾了大运充满艰辛和挑战的试飞历程。
</p>
<a href="#">李秘,蓝鸥第一艺术大师</a>
</body>
</html>
网友评论