css (一)

时间:2020-10-12 20:29:50   收藏:0   阅读:30

介绍

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>元素类型

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!