css (一)

介绍

Cascading Style Sheets,CSS,层叠样式表。
注释:/**/

创建

1、内联样式

<p style="color:red;line-height=15px">这是一个段落</p>

2、内部样式表

<style>
     p{color:red;line-height=15px}
<style>

3、外部样式表

<link rel="stylesheet" type="text/css" href="index.css"/>

选择器

1、id选择器

#p1

2、class选择器

.leftDiv

3、元素类型选择器

p

优先级:内联>id>class>元素类型

posted @ 2020-10-12 13:54  黑白猫123  阅读(49)  评论(0编辑  收藏  举报