有没有办法重新调整其背景图像的大小?
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 或 CSS2 中使用 background-size,您可以使用 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