style="背景图像:url(";https://mars.nasa.gov/system/resources/detail_files/26895_PIA25326-web.jpg"(;
我正试图让它成为一个按钮和标题背后的背景。
<button
style='background-image: url("https://mars.nasa.gov/system/resources/detail_files/26895_PIA25326-web.jpg')
你好
在背景图像周围使用单引号,因为您在URL中使用双引号以避免冲突,因为html会考虑在背景图像的开头使用引号&URL的开头作为标记的开头和结尾,这将导致冲突并且将不起作用。
使用包含元素。设置包含元素的background-image
。
.container {
background-image: url(https://mars.nasa.gov/system/resources/detail_files/26895_PIA25326-web.jpg);
height: 500px;
}
<div class="container">
<h1>Header</h1>
<button>Button</button>
</div>