在图像上显示表格
<table>
<tr>
<td>
<img src="/me/images/register.jpg" width="680" height="290">
</td>
</tr>
</table>
如何在此图像上显示文本
和标签
?
<table>
<tr>
<td>
<img src="/me/images/register.jpg" width="680" height="290">
</td>
</tr>
</table>
how can i show text
and lables
on this image?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将您的图像作为
td
、tr
或table
上的背景
。如果图像的高度和宽度不是 100%,请使用background-position
将图像放置在您想要的位置。然后就像在表中一样使用 html 。像这样: http://jsfiddle.net/zPm2R/
Have your image as a
background
on either thetd
,tr
ortable
. If image is not 100% height and width, usebackground-position
to position your image where you want it. Then just use html as you would in the table.Like this: http://jsfiddle.net/zPm2R/