元素设置背景图像。
html
<p>此段落有背景图片。</p>
css
p { padding: 30px; background-image: url("green_photo.jpg"); color: white; }
0