Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
CSS コンテンツを FireFox で表示する方法を考えていました。正しく表示されていないようです。コードは次のとおりです。
div.images:hover { content:url(http://domain.com/images.png); }
modzilla でコンテンツのホバーが正しく表示されないのはなぜですか?
このcontentプロパティは:before/ pseudo 要素用です。したがって、次のような作業は想定されていません。:after div.images:hover
content
:before
:after
div.images:hover
代わりに、backgroundプロパティを使用してスタイルを追加します。
background
div.images:hover { background-image: url(http://domain.com/images.png); }