需要将文本放在表格中的图像上

发布于 2024-10-17 06:50:54 字数 221 浏览 4 评论 0原文

我在 Photoshop CS4 中制作了一个网页,将其切片,然后将其放入 Dreamweaver CS4 中的表格中。 http://www.themegan.info/lab4/index.htm(粗略的开始,我知道)现在,我该如何将文本放在图像之上?我使用 CSS 吗?我现在很困惑。

I made a webpage in Photoshop CS4, sliced it up, threw it in a table in Dreamweaver CS4. http://www.themegan.info/lab4/index.htm (rough start, I know) Now, how do I go about putting text on top of the images? Do I use CSS? I am just confused at this point.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

久隐师 2024-10-24 06:50:54
<td style="position:relative;">
    <img src="..." style="position:absolute;z-index:1;" />
    <div style="z-index:2;position:relative;">your text goes here</div>
</td>
<td style="position:relative;">
    <img src="..." style="position:absolute;z-index:1;" />
    <div style="z-index:2;position:relative;">your text goes here</div>
</td>
空城缀染半城烟沙 2024-10-24 06:50:54

您可以通过 css 使用图像作为布局“部分”的背景。即

html:

<div id="content">...text...</div>

css:

#content{
    background:url(..imgurl..) no-repeat top left;
}

You could use the images as backgrounds of your layout "parts" through css. I.e.

html:

<div id="content">...text...</div>

css:

#content{
    background:url(..imgurl..) no-repeat top left;
}
绮筵 2024-10-24 06:50:54

除非您希望用户与图像(即导航菜单图像)进行交互,否则您应该使用 css background-image 属性使您的设计元素转到背景。示例:

td#sidebar { background-image:sidebarimg.jpg no-repeat; }

那么您放入 td 元素中的任何文本都会自动显示在图像的顶部。这一点尤其重要,因为这意味着维护网站所需的维护工作会减少很多。

Unless you want your users to interact with the image (i.e. the navigation menu images) you should use the css background-image property to make your design elements go to the background. Example:

td#sidebar { background-image:sidebarimg.jpg no-repeat; }

Then whatever text you put into your td element will automatically be on top of the image. This is especially important because it means a lot less upkeep will be required in maintaining your site.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文