我有这种形式:http://www.problemio.com/add_problem.php
并且底部的按钮具有一些CSS样式,这些样式在除IE之外的所有浏览器上均呈现。
这是我的按钮样式的css:
.button
{
-moz-border-radius:3px;
-webkit-border-radius:3px;
border-radius: 3x;
border: 1px solid #ABABAB;
background-image: -webkit-gradient(linear, left top, left bottom, from(#E1E1E1), to(#F7F7F7));
background-image: -webkit-linear-gradient(top, #E1E1E1, #F7F7F7);
background-image: -moz-linear-gradient(top, #E1E1E1, #F7F7F7);
background-image: -ms-linear-gradient(top, #E1E1E1, #F7F7F7);
background-image: -o-linear-gradient(top, #E1E1E1, #F7F7F7);
background-image: linear-gradient(top, #E1E1E1, #F7F7F7);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#E1E1E1', EndColorStr='#F7F7F7');
padding: 6px;
text-transform: uppercase;
font: 100% "League Gothic", Helvetica, Arial, sans-serif;
text-decoration:none;
}
最佳答案
您错过了p
上的border-radius: 3px
。
关于html - IE 8提交按钮样式不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9103893/