gpt4 book ai didi

internet-explorer - IE 中的 CSS 按钮

转载 作者:行者123 更新时间:2023-12-04 07:43:49 25 4
gpt4 key购买 nike

我有一个用 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 和 IE 9 中工作。

请帮忙,谢谢!

最佳答案

尝试添加以下 filter 属性:

filter: progid:DXImageTransform.Microsoft.gradient(enabled='true', 
startColorstr=#FFE80000, endColorstr=#FF840000)

根据 this resource,这应该一直适用于 IE 5.5 .

关于internet-explorer - IE 中的 CSS 按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12048086/

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