首页 > 试题广场 >

CSS样式表根据所在网页的位置,可分为哪几种样式表?

[问答题]
CSS样式表根据所在网页的位置,可分为哪几种样式表?

http://www.w3school.com.cn/html/html_css.asp
外部样式表

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

内部样式表

<head>
<style type="text/css">
body {background-color: red}
p {margin-left: 20px}
</style>
</head>

内联样式

<p style="color: red; margin-left: 20px">
This is a paragraph
</p>
发表于 2018-03-06 21:13:01 回复(0)
少说一个导入样式,@import
发表于 2021-11-13 19:39:00 回复(0)
<p>外部样式表</p><p>内部样式表</p><p>内联样式表</p>
发表于 2020-05-14 16:36:47 回复(0)
内联 内嵌 外链样式表
编辑于 2020-03-10 12:19:57 回复(0)