三种css样式表及其优先级

时间:2022-12-20 20:24:07

1.行内样式

body内:

<p style="text-indent: 2em;color: red">
我是行内样式
</p>

2.内部样式表

body内:

<div class="inside">
我是内部样式表我是内部样式表
</div>

head内:

<style type="text/css">
.inside{
width: 300px;
height: 300px;
border: 1px solid blue;
}
</style>

3.外部样式表

body:

<div class="outside">
我是外部样式表
</div>

head内连接外部css样式代码:

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

外部样式代码:

.outside{
width: 300px;
margin-bottom: 20px;
height: 200px;
background-color:#0f0;
}

优先级:行内样式>内部样式表>外部样式表