gpt4 book ai didi

jquery - Html 按钮背景重复自身,但设置为大小 :100%

转载 作者:太空宇宙 更新时间:2023-11-04 11:37:23 25 4
gpt4 key购买 nike

我正在尝试为 HTML 中的按钮设置图像背景。我的 CSS 看起来像这样:

background-image: url("images/Home-Button.png"); 
background-size: 100% 100%;

这里是 the image .这是 image display .

看起来背景是重复的。这发生在我所有的按钮上。我怎样才能避免这种情况?

抱歉提供图片链接。这是我的第一个问题,所以我没有足够的积分来在 Stack Overflow 上显示图像。

最佳答案

使用这个:

background-size:cover;

The cover value specifies that the background image should be sized so that it is as small as possible while ensuring that both dimensions are greater than or equal to the corresponding size of the container.

Reference on MDN .

示例代码:

button {
background:url(http://www.kafkabrigade.org.uk/wp-content/uploads/2011/07/button-pic.jpg) center / cover no-repeat;
border:0;
cursor:pointer;
width:196px;
height:220px;
}
<button></button>

关于jquery - Html 按钮背景重复自身,但设置为大小 :100%,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31641486/

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