我想列出所有可以从外部资源获得价值的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>


就像上面的示例一样,“背景”从其他URL获取其资源。
上面是什么其他CSS属性,下面列出了其中的一些属性:

background-image
list-style-image
content
border-image-source

最佳答案

在CSS 2.1中,接受<uri>值的属性的完整列表为


backgroundbackground-image的简写)
background-image
content
cuecue-aftercue-before的简写)
cue-after
cue-before
cursor
list-stylelist-style-image的简写)
list-style-image
play-during


注意cuecue-aftercue-beforeplay-during是在非规范性附录中定义的,因此不需要UA来实现它们。

07-26 06:46