以下を使用して、ブラウザーのサイズに基づいてテキスト (およびその他の要素) のサイズを変更しています。
(function(w){
var run = w.onresize = function(){
document.body.style.fontSize=window.innerWidth*.009536+"px"
}
run();
})(window);
ただし、次の範囲内では何にも影響しません。
<style type="text/css">
.search-sprite
{
background-image: url(../../images/searchsprite.png);
height: 2.46em;
cursor: pointer;
background-repeat:no-repeat;
}
.search-sprite:hover {
background-position: 0px -2.46em;
}
</style>
なんで?どうすれば修正できますか?