我想列出所有可以从外部资源中获取价值的CSS属性。 例如
<!DOCTYPE html>
<html>
<head>
<style>
body {
background: #ffffff url("http://www.w3schools.com/css/img_tree.png") no-repeat right top;
margin-right: 200px;
}
</style>
</head>
<body>
<h1>Hello World!</h1>
<p>Now the background image is only shown once, and it is also positioned away from the text.</p>
<p>In this example we have also added a margin on the right side, so that the background image will not disturb the text.</p>
</body>
</html>
与上面的例子一样&#34;背景&#34;从其他URL获取其资源。 什么是上面的其他CSS属性,我在下面列出了一些:
background-image
list-style-image
content
border-image-source
答案 0 :(得分:1)
在CSS 2.1中,接受<uri>
值的完整属性列表是
background
(background-image
的简写)background-image
content
cue
(cue-after
和cue-before
的简写)cue-after
cue-before
cursor
list-style
(list-style-image
的简写)list-style-image
play-during
注意cue
,cue-after
,cue-before
和play-during
在非规范性附录中定义,因此UAs不需要实施它们。