url()函數是一個內置函數,用於包含文件。該函數的參數是絕對URL,相對URL或數據URI。 url()函數可用於背景圖像,邊框圖像,列表樣式圖像,內容,光標,邊框圖像,邊框圖像源,作為@ font-face塊一部分的src和@反樣式/符號。
用法:
url( <string> <url-modifier>* )
參數:此函數接受單個參數url,該參數以字符串格式保存url。 url的示例是:
<css_property>:url("https://geeksforgeeks.org/image.png") <css_property>:url('https://geeksforgeeks.org/image.png') <css_property>:url(https://geeksforgeeks.org/image.png)
下麵的示例說明了CSS中的url()函數:
例:
<!DOCTYPE html>
<html>
<head>
<title>CSS url() function</title>
<style>
body {
background-image:url(
"https://media.geeksforgeeks.org/wp-content/cdn-uploads/20190710102234/download3.png");
text-align:center;
}
h1 {
color:white;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>CSS url() function</h2>
</body>
</html>
輸出:
支持的瀏覽器:url()函數支持的瀏覽器如下:
- 穀歌瀏覽器
- IE瀏覽器
- 火狐瀏覽器
- 蘋果瀏覽器
- Opera
相關用法
- d3.js d3.lab()用法及代碼示例
- PHP exp()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- PHP sin( )用法及代碼示例
- PHP abs()用法及代碼示例
- PHP cos( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- PHP next()用法及代碼示例
- PHP Ds\Map get()用法及代碼示例
- d3.js d3.sum()用法及代碼示例
- PHP pi( )用法及代碼示例
注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 CSS | url() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。