gpt4 book ai didi

css - 如何使按钮的背景图像响应

转载 作者:行者123 更新时间:2023-11-28 08:08:35 24 4
gpt4 key购买 nike

我在jsp中使用的代码是

<button class="refresh" onclick="javascript:regenImage();" type="button"></button>

我用来在那个按钮上放置图像的 CSS 是

.refresh{
background-color: transparent;
background-image: url("../images/sp_out.png");
background-repeat: no-repeat;
height: 40px;
width: 43px;
}

使用图像没有响应。

最佳答案

你需要添加

background-size: 100% auto;

表示背景宽度为100%,高度为auto;

或者你可以这样添加

 background-size: auto 100%;

 background-size: 100% 100%;

关于css - 如何使按钮的背景图像响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29386671/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com