网页文件什么时候用html,什么时候用css

html-css024

网页文件什么时候用html,什么时候用css,第1张

网页的文本部分都是用html的;

网页框架部分用css,可以在头部写出整页css<style>css</style>

然后在内容中具体调用。

也可以把css单独分离出去,外部调用更方便修改使用。

important是提高属性的代先级

如何用?

在写样式时,属性值末尾加上就行了。比如:

1

.div{height:100px!important}

何时用?

需要提高某选择器的时候用。这不是屁话吗?还是举个例子吧

比如你以前定义了

1

2

3

.red{color:red}

...

.tit{color:green}

但又有如下html

1

<div class="tit"><span class="red">我的颜色是什么?</span></div>

那么,你想红色就是要色红,别的样式不能再改变了(提高红色的优先级),那这个时候就可以用!important了。

1

.red{color:red!important}