gpt4 book ai didi

css - 如何在提交按钮中设置背景图片?

转载 作者:技术小花猫 更新时间:2023-10-29 10:11:03 25 4
gpt4 key购买 nike

如何在提交按钮中设置背景图片?

我必须使用图像代替常规提交按钮吗?在 xhtml/css 中哪种方式最好?

按钮在包括 IE6、IE7 在内的所有主流浏览器中看起来应该相同

最佳答案

我通常采用的方式是使用以下 CSS:

div#submitForm input {
background: url("../images/buttonbg.png") no-repeat scroll 0 0 transparent;
color: #000000;
cursor: pointer;
font-weight: bold;
height: 20px;
padding-bottom: 2px;
width: 75px;
}

和标记:

<div id="submitForm">
<input type="submit" value="Submit" name="submit">
</div>

如果在各种浏览器中看起来不同,我恳请您使用重置样式表,将所有边距、填充甚至边框设置为零。

关于css - 如何在提交按钮中设置背景图片?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2444894/

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