怎样在div中添加图片

1.插入图片
<div><img src="图片地址" /></div>
2.图片做背景
<div style="background:url(图片地址); width:100px;height:100px;">div>

方法一:css内:
.coldiv{background:#000000;或者}
方法二:html内:
<div style="background:#000000;或者">
<div class="bg"></div><style>.bg { background-color:red /*此处更换为所需的颜色代码*/}</style>

猜你喜欢

转载自www.cnblogs.com/yingyigongzi/p/9237234.html