发布网友 发布时间:2022-04-22 08:56
共3个回答
热心网友 时间:2023-09-08 05:00
dw 里设置背景图片显示不出来是设置包括路径有问题。具体步骤如下:
打开网站的首页,这里是index.html。
找到菜单栏上的“修改”,点开它。
然后点开“页面属性”,鼠标点击页面属性中的“外观”-“浏览”。
打开浏览后找到想要设置成网页背景的图片。最好这里是网站的目录。添加好后记得点确定。回到dreamweaver即可发现设置的背景图片显示出来了。
热心网友 时间:2023-09-08 05:00
具体编程如下:
<table width="900" border="0">
<tr>
<td height="230" colspan="2" align="left" valign="top" background="images/home_01.gif"> </td>
</tr>
<tr>
<td width="245" height="1250" background="images/home_02.gif" > </td>
<td width="655" height="1250" background="images/home_03.gif"> </td>
</tr>
<tr>
<td height="130" colspan="2" background="images/home_05.gif"> </td>
</tr>
</table>
还是路径的写法有误,把images前面的/去掉就可以了。
热心网友 时间:2023-09-08 05:00
<table width="900" border="0">
<tr>
<td height="230" colspan="2" align="left" valign="top" background="images/home_01.gif"> </td>
</tr>
<tr>
<td width="245" height="1250" background="images/home_02.gif" > </td>
<td width="655" height="1250" background="images/home_03.gif"> </td>
</tr>
<tr>
<td height="130" colspan="2" background="images/home_05.gif"> </td>
</tr>
</table>
还是路径的写法有误,把images前面的/去掉就可以了