我正在尝试为我的表单设置提交按钮的样式。我正在查看“按钮”标签,并添加了我的 CSS 样式,但按钮的默认样式仍然很糟糕。
这是我到目前为止所拥有的:
<button name="visit_return_button" id="visit_return_button" type="submit" class="visit_return_button">
Increase
</button>
我的 css 样式有效,但我的边框和背景颜色也很糟糕。我也在研究 JavaScript,但我不喜欢并非所有浏览器都激活 JS 的想法。
下面是按钮的图像,顶部是它的样子,底部是它假设的样子:
这是我的CSS:
#visit_return_button{
width:90px;
height:30px;
position:absolute;
background-image: url(image/build_button.png);
background-repeat: no-repeat;
/*font-family: Tahoma, Geneva, sans-serif;*/
font-size: 14px;
font-weight: normal;
color: #FFF;
text-align: center;
/*margin: auto;*/
padding-top: 10px;
margin-top:-20px;
}
将不胜感激任何帮助,谢谢