码迷,mamicode.com
首页 > Web开发 > 详细

css (一)

时间:2020-10-12 20:29:50      阅读:30      评论:0      收藏:0      [点我收藏+]

标签:cascading   cad   code   pre   层叠样   样式   style   类型   href   

介绍

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

css (一)

标签:cascading   cad   code   pre   层叠样   样式   style   类型   href   

原文地址:https://www.cnblogs.com/heibaimao123/p/13802454.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!