JSP

时间:2015-12-08 08:41:18

标签: java css jsp templates

使用页脚,页眉和左列开发WebPage。  以下是main.jsp代码

<table>
    <tr valign='top'><td><%@include file='leftside.jsp'%></td>
    <td><table>
    <tr><td><%@include file='header.jsp'%></td></tr>
    <tr><td>Content</td></tr>
    <tr><td><%@include file='footer.jsp'%></td></tr>
    </table>
    </td>
    </tr>
</table>

leftside.jsp代码位于

之下
<body bgcolor=blue>
Leftside
</body>

在运行main.jsp时,我只将文本作为Leftside。不显示蓝色的背景颜色。我错过了什么吗?感谢。

2 个答案:

答案 0 :(得分:0)

请使用撇号"",它会正常工作

<body bgcolor="blue">
Leftside
</body>

答案 1 :(得分:0)

尝试使用它:

 <body style="background-color:blue;">

或添加撇号"blue"

 <body bgcolor="blue">

取而代之的是:

<body bgcolor=blue>