需要将文本放在表格中的图像上
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以通过 css 使用图像作为布局“部分”的背景。即
html:
css:
You could use the images as backgrounds of your layout "parts" through css. I.e.
html:
css:
除非您希望用户与图像(即导航菜单图像)进行交互,否则您应该使用 css background-image 属性使您的设计元素转到背景。示例:
那么您放入 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:
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.