我有一个用 CSS 创建的按钮,它在 Firefox 和 Chrome 中运行良好,但在 IE 中运行良好......
不知道出了什么问题,但我认为有一些缺失或错误的代码。这是我的代码:
.red-button{
width: 400px;
height: 100px;
line-height: 100px;
color: white;
text-decoration: none;
font-size: 20px;
font-family: "ff-dagny-web-pro", Helvetica, Arial, sans-serif;
font-weight: bold;
display: block;
text-align: center;
position: relative;
border: 1px double black;
border-radius: 10px;
background-image: -webkit-gradient(linear, center top, center bottom,
from(#e80000), to(#840000));
background-image: -webkit-linear-gradient(top, #e80000, #840000);
background-image: -moz-linear-gradient(top, #e80000, #840000);
background-image: -o-linear-gradient(top, #e80000, #840000);
background-image: -ms-linear-gradient(top, #e80000, #840000);
background-image: linear-gradient(to bottom, #e80000, #840000);
text-shadow: 1px 1px 1px black;
-webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.75);
-moz-box-shadow: 0 1px 5px rgba(0,0,0,0.75);
box-shadow: 0 1px 5px rgba(0,0,0,0.75);
}
我希望它在 IE 9 和 IE 8 中工作。虽然我知道边界半径等属性在 IE 8 中不起作用,但我确实希望渐变在 IE 8 和 9 中起作用。
请帮忙,谢谢!