背景画像のサイズを変更するアイデアはありますか?
div{background: url("image.jpg") no-repeat;}
/* here original image is 20px X 20px
and I would like to re-size its background image as 50px X 50px */
プロパティを使用できますbackground-size
が、これは css3 であり、新しいブラウザーでのみ機能します
を使用できます。
-moz-background-size:
-webkit-background-size:
background-size:
CSS3 で background-size を使用するか、CSS2 で phpthumb を使用できます。
div{background: url("phpThumb.php?src=images/image.jpg&w=20&h=20") no-repeat;}
PHPソリューションに興味がある場合は、このサイトをチェックしてください
http://phpthumb.sourceforge.net/demo/demo/phpThumb.demo.demo.php