首頁 > web前端 > css教學 > 主體

在CSS中匯入外部樣式表

王林
發布: 2023-08-24 12:21:03
轉載
1959 人瀏覽過

我們可以在另一個CSS宣告中匯入額外的CSS檔案。 @import規則用於此目的,它在文件中連結樣式表。通常在一個樣式表依賴另一個樣式表時使用。它在

標籤內的@charset聲明之後的文檔頂部指定。

Syntax

@import規則的語法如下:

@import /*url or list-of-media-queries*/
登入後複製

The media queries can be compound statements which may specify the behavior of the document in different media.

Example

The following examples implement the @import rule −

HTML document

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
@import url(style.css);
body {
   background-color: honeydew;
}
</style>
</head>
<body>
<p>This is demo paragraph one. </p>
<p class="two">This is demo paragraph two.</p>
<p>This is demo paragraph three</p>
</body>
</html>
登入後複製

CSS文件:style.css

p { color: navy; font-style: italic; }
.two { color: darkgreen; font-size: 24px; }
登入後複製

輸出

這將產生以下輸出−

在CSS中匯入外部樣式表

範例

HTML文件−

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div></div>
</body>
</html>
登入後複製

CSS文件

div {
   height: 50px;
   width: 100px;
   border-radius: 20%;
   border: 2px solid blueviolet;
   box-shadow: 22px 12px 3px 3px lightblue;
   position: absolute;
   left: 30%;
   top: 20px;
}
登入後複製

輸出

這將產生以下輸出−

在CSS中匯入外部樣式表

以上是在CSS中匯入外部樣式表的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板