gpt4 book ai didi

css - IE9边框颜色错误?

转载 作者:行者123 更新时间:2023-11-28 03:44:40 27 4
gpt4 key购买 nike

其他人能否查看此代码并确认这是一个 IE9 错误或告诉我我做错了什么?使用以下 HTML 代码。即使定义了红色边框颜色,按钮的底部边框也会呈现与文本相同的颜色。 IE8 和地球上的所有其他浏览器都可以正常显示。确保 IE9 以标准模式呈现。

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
button.button {
color: blue;
border: 0px;
border-bottom: #FF0000 2px solid;
}
</style>
</head>
<body>
<button type="button" class="button">Update</button>
</body>
</html>

到目前为止,我找到的唯一解决方法是为样式底部的所有边重新声明边框颜色。

border-color: #FF0000;

最佳答案

不知道有没有人帮我查了一下

用这个

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
button {
border:0;
}

.update {
color: blue;
border-bottom: 2px #FF0000 solid;
display: block;
outline:none;
}
</style>
</head>
<body>
<button type="button" class="update">Update</button>
</body>
</html>

如果你接受我的意见,请不要使用标签名作为类名

关于css - IE9边框颜色错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7459831/

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