CSS @import 规则
css3基础 2022-07-14 16:29:20小码哥的IT人生shichen
CSS @import 规则
定义和用法
@import 规则允许您将样式表导入另一张样式表中。
@import 规则必须位于文档顶部(但是在任何 @charset 声明之后)。
@import 规则还支持媒体查询,因此可以允许依赖媒体的导入。
实例
例子 1
把 "navigation.css" 样式表导入当前样式表中:
@import "navigation.css"; /* 使用字符串 */
或者
@import url("navigation.css"); /* 使用 url */
例子 2
只在媒体为 print 时导入 "printstyle.css" 样式表:
@import "printstyle.css" print;
完整实例【亲自试一试】:
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 300px;
height: 100px;
background-color: yellow;
border: 1px solid black;
-ms-transform: translate(50px,100px); /* IE 9 */
transform: translate(50px,100px); /* 标准语法 */
}
</style>
</head>
<body>
<h1>translate() 方法</h1>
<p>translate() 方法从元素当前位置对其进行移动:</p>
<div>
该 div 元素从其当前位置向右移动 50 个像素,并向下移动 100 个像素。
</div>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
例子 3
只在媒体为 screen 且视口最大宽度 768 像素时导入 "mobstyle.css" 样式表:
@import "mobstyle.css" screen and (max-width: 768px);
完整实例【亲自试一试】:
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 300px;
height: 100px;
background-color: yellow;
border: 1px solid black;
-ms-transform: translate(50px,100px); /* IE 9 */
transform: translate(50px,100px); /* 标准语法 */
}
</style>
</head>
<body>
<h1>translate() 方法</h1>
<p>translate() 方法从元素当前位置对其进行移动:</p>
<div>
该 div 元素从其当前位置向右移动 50 个像素,并向下移动 100 个像素。
</div>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
CSS 语法
@import url|string list-of-mediaqueries;
属性值
值 | 描述 |
---|---|
url|string | url 或字符串,代表要导入的资源的位置。url 可以是绝对或相对的。 |
list-of-mediaqueries | 以逗号分隔的媒体查询列表,决定通过 URL 引入的 CSS 规则在什么条件下应用。 |
浏览器支持
表格中的数字注明了完全支持该属性的首个浏览器版本。
Chrome | IE / Edge | Firefox | Safari | Opera |
---|---|---|---|---|
1.0 | 5.5 | 1.0 | 1.0 | 3.5 |