你给一个div 添加背景图,不影响在这个div里面添加文字的,比如
<style>
.class{width: 200px;height: 200px;background: url("图片路径") no-repeat;}
</style>
注释:background: url("图片路径") no-repeat;
repeat: 平铺整个页面,左右与上下
repeat-x: 在x轴上平铺,左右
repeat-y: 在y轴上平铺,上下
no-repeat: 图片不重复
<div class="class">
<p>你的文字内容</p>
</div>
那么在这个div的
背景图片就有了,你在里面写文字就可以了,如果你想给文字放到特定位置的话就需要定位了,