IE8 <输入类型=“按钮”> - CSS 悬停在边框和填充设置为 0 的情况下不起作用
测试页:
<!DOCTYPE html>
<html>
<head>
<title>button border hover test</title>
<style type="text/css">
input
{
border: 0;
padding: 0;
}
input:hover
{
background-color: fuchsia;
}
</style>
</head>
<body>
<form>
<input type="button" value="input element" /><br>
</form>
</body>
</html>
背景颜色没有变化。如果将填充设置为大于 0 的值,则背景颜色会发生变化。 我在 Firefox 中没有看到这种行为。
1px 的填充不会破坏布局,但是有人知道如何使用 0 填充来实现此功能吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有两种可能的解决方案。
来自 http 的一些相关信息: //www.sitepoint.com/forums/showthread.php?769898-button-vs.-input-type-quot-button-quot
There are two possible solutions.
<button>
element instead.Some relevant information from http://www.sitepoint.com/forums/showthread.php?769898-button-vs.-input-type-quot-button-quot
欢迎来到俱乐部。这让我发疯。
我有一个表格,最后一列有按钮。当您将鼠标悬停在一行上时,背景会发生变化。
如果将鼠标悬停在行中的按钮上,按钮上的文本颜色以及行背景都会发生变化。
我在按钮上有 0 填充。
所有这些在 FF 中都运行良好,没有任何问题。
在 IE8 中,这是一个完整的故事。行悬停效果很好,但是当您将鼠标悬停在行中的按钮上时,没有任何反应。
行背景没有改变,按钮文本颜色也没有改变(99.99% 的时间)。
我玩了这个,终于意识到发生了什么事。
悬停在按钮文本上时似乎不起作用。
我在按钮文本的每一侧添加了 20px 的内边距。
如果我将光标滑下填充区域中的按钮(不接触文本),它的效果和 FF 一样好。
一旦我将光标滑到按钮中间(穿过按钮文本),它就会中断。
去算算吧。我讨厌IE!!!!
Welcome to the club. This was driving me crazy.
I have a table with buttons in the last column. When you hover over a row, the background changes.
If you hover over the button in the row, the text color on the button changes as well as the row background.
I had 0 padding on the buttons.
All this works great in FF with no problems.
In IE8, a whole nuther story. The row hover worked great but when you hovered over the button in the row, nothing happened.
The row background didn't change and the button text color didn't change (99.99% of the time).
I played with this and finally realized what was going on.
It seems to be that hover doesn't work while over button text.
I added 20px of padding on each side of the text on the button.
If I slide my cursor down the buttons in the padded area (not touching the text) it worked as well as FF.
As soon as I slide the cursor down the middle of the buttons (through the button text), it breaks.
Go figure. I HATE IE!!!!