代码编辑器:
x
1
<style>
2
#myDIV{
3
border:1px solid black;
4
width:300px;
5
height:300px;
6
background:url('/static/i/smiley.gif') no-repeat;
7
}
8
</style>
9
<p>点击“尝试一下”按钮扩大 DIV 元素的背景大小:</p>
10
<button onclick="myFunction()">尝试一下</button>
11
<div id="myDIV">
12
<h1>Hello</h1>
13
</div>
14
<script>
15
function myFunction(){
16
document.getElementById("myDIV").style.backgroundSize = "60px 120px";
17
}
18
</script>