gpt4 book ai didi

html - 为什么添加背景图片后按钮内的文字会重叠?

转载 作者:太空宇宙 更新时间:2023-11-04 09:31:11 24 4
gpt4 key购买 nike

更新:我更新了我的代码(感谢 Kodos Johnson)。但是我对背景图像的填充有另一个问题。

当我尝试在我的按钮内添加背景图像时,其中的文本移到按钮外。有人可以帮帮我吗?我的代码如下:

<div>           
<button type="button" id="secondBarButton">See How It Works</button>
</div>

--- Update 2: I want to add padding or margin for the image.

#secondBarButton {
float: right;
padding: 5px;
margin: 10px;
background-image: url(images/button.png);
}

I cannot make the text move back inside the button and center.

最佳答案

忘记为简单图标使用背景图像吧。使用来自 FontAwesome 的图标,此按钮上使用的特定图标是:

fa-play-circle

片段

<!doctype html>
<html>

<head>
<meta charset='utf-8'>
<title>Button</title>
<link href='https://cdn.jsdelivr.net/fontawesome/4.7.0/css/font-awesome.min.css' rel='stylesheet'>
<style>
#btn1 {
position: relative;
width: 300px;
height: 50px;
border-radius: 25px;
background-color: white;
border: 1px solid #0070BA;
font-weight: bold;
font-size: 0.8em;
color: #0070BA;
line-height: 1;
cursor: pointer;
}
.fa {
position: absolute;
left: 2px;
top: -2px;
}
#btn1:hover {
background-color: #0070BA;
border: 1px solid #fff;
color: #fff;
}
</style>
</head>

<body>

<button id="btn1">
<i class='fa fa-4x fa-play-circle'></i> See How It Works
</button>


</body>

</html>

关于html - 为什么添加背景图片后按钮内的文字会重叠?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40775907/

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