什么时候用img,什么时候用background??
img一般使用在HTML里面的,background是用在CSS里面的属性。
比如在html里面插入图片就用img
<div> <img src="images/pic.jpg" > </div>
而在CSS中就用background,
div { background: url(../images/pic.jpg); } /*或者background-image*/ div { background-image: url(../images/pic.jpg); }
应该是这样的。
这个答案也太牵强了吧