html+css入门

1html介绍

定义关于 HTML 文档的元信息。定义文档与外部资源的关系。

8选择器

.class多次,同时多个样式

{

color : red

};

#id唯一,只能一个样式样式

{

color : red

};

*{}

a:hover{}

9.继承

p{color:red;}具有

p{border:1px solid red;}不具体

10.排版

(文字排版——字体)font-family:"宋体",sans-serif;

(文字排版——字号)font-size:12px;color:#666

(文字排版——粗体)font-weight:bold

(文字排版——斜体)font-style:italic;

(文字排版—下划线)text-decoration:underline;

(文字排版—删除线)text-decoration:line-through

(段落排版——缩进)text-indent:2em;

(段落排版—行间距)line-height:2em;

(段落排版—字间距)letter-spacing:50px

(段落排版——对齐)text-align:center;

11.模型

块级元素

你可能感兴趣的:(html+css入门)