为了账号安全,请及时绑定邮箱和手机立即绑定

html+css怎么在图片上添加文字

html+css怎么在图片上添加文字

幕布斯6054654 2019-05-31 03:02:33
html+css怎么在图片上添加文字
查看完整描述

2 回答

?
四季花海

TA贡献1811条经验 获得超5个赞

html+css在图片上添加文字有两种方法如下:

1.添加一个DIV,采用绝对定位,图片所属DIV为基准

<div style="position:relative;width:100px;height:100px;">
<img src="" alt="" />
<div style="position:absolute;width:100px;height:100px;z-indent:2;left:0;top:0;">
文字
</div>
</div>

第二种方法:图片作为背景图片

<div style="background:url(abc.jpg) no-repeat left top;">
wenzi
</div>

背景图片现在有了,然后在上面写上你需要写的字就可以了。




查看完整回答
1 反对 回复 2019-06-01
?
偶然的你

TA贡献1841条经验 获得超3个赞

第一种方法:
添加一个DIV,采用绝对定位,图片所属DIV为基准
<div style="position:relative;width:100px;height:100px;">
<img src="" alt="" />
<div style="position:absolute;width:100px;height:100px;z-indent:2;left:0;top:0;">
文字
</div>
</div>
第二种方法:图片作为背景图片
<div style="background:url(abc.jpg) no-repeat left top;">
wenzi
</div>



查看完整回答
反对 回复 2019-06-01
  • 2 回答
  • 0 关注
  • 2066 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信