我想知道如何在FireFox中显示我的CSS内容。它似乎没有正确显示。这是代码:
div.images:hover {
content:url(http://domain.com/images.png);
}
为什么内容悬停不能直接显示在modzilla上?
答案 0 :(得分:1)
content
属性适用于:before
/ :after
pseudo elements。因此,不要假设像div.images:hover
那样工作。
而是使用background
属性添加样式:
div.images:hover {
background-image: url(http://domain.com/images.png);
}