gpt4 book ai didi

css - 在 msie 中鼠标移动时的选择性边框

转载 作者:行者123 更新时间:2023-11-27 22:34:00 25 4
gpt4 key购买 nike

我的以下 css 代码在 msie 中不起作用。

#block a {
border-right: 2px none #eee;
border-bottom: 2px none #eee;
}

#block a:hover {
border-right: 2px solid #eee;
border-bottom: 2px solid #eee;
}

在msie中,只有右边框会正确显示。底部边框完全不可见。其他浏览器工作正常。

有人可以帮助我,让它在 msie 中也能正确显示吗?

演示网站是http://mmjd.com (鼠标移到最右侧的文字上)

最佳答案

有问题的 anchor 正在内联显示。 IE 无法识别全宽和全高。

设置 display:block; 解决这个问题。

#block a {
border-right: 2px none #eee;
border-bottom: 2px none #eee;
display:block;
}

#block a:hover {
border-right: 2px solid #eee;
border-bottom: 2px solid #eee;
}

关于css - 在 msie 中鼠标移动时的选择性边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3128096/

25 4 0
文章推荐: c++ - 如何区分单个 GPU 中不同主机 CPU 线程的 GPU 线程
文章推荐: javascript - 将最终的 Typsecript 导出包装在模块中?
文章推荐: c++ - 使用 生成日期 vector
文章推荐: html - 仅使用 css 将图像从父
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com