您的位置:首页 > Web前端 > CSS

CSS

2016-04-25 19:34 961 查看
CSS

1.css属性

background-color

border

color

font-size

height

padding

text-decoration 设置元素文字的装饰效果,如下划线underline

width

2.CSS样式使用

方式一:

style=”background-color: grey; color: white”

方式二:

a {

background-color: grey;

color: white

}

方式三:

方式四:

@import导入.css (@charset设置编码格式)

3.样式查找顺序

style属性内嵌样式

style元素内嵌样式

link外部样式

用户样式

浏览器样式

4.重要样式调整层叠次序

!important

5.CSS中重要的4种选择器

6.inherit强制继承

文字字体颜色可继承

其他的样式可以通过强制继承(inherit)

7.推荐CSS小工具

blueprint

SelectorGadget
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: