I am trying to make a menu bar for my website, I ve got an image for the bar itself and the text should go ontop of it... All of this lives inside a table. This is what I have right now:
<tr>
<td>
<img src="images/index2_04.jpg" width="667" height="33" alt="">
<div style="position:absolute; left:50%; top:22%;">
<h1><a href="/index.html">Home</a> <a href="/more.html">More </a><a href="/help.html">Help</a></h1>
<div>
</td>
</tr>
你们可以看到,我试图把图像和文字与百分比联系起来,但尽管距离应当与图像保持相同,但案文在不同的装置上进行测试时会改变和移动。 是否有更好的办法这样做? 或者,我是否做了一些错误?
a. 预收;