将内容插入到jsp中包含的html布局中

时间:2014-11-08 07:10:32

标签: html css jsp

我已经使用css为我的网站创建了一个html布局。这个布局包含在我的jsp文件中,使用了这个动作。 我的问题是,当我尝试将内容放入我的布局的内容部分时,它会被移到布局之外而不是根据需要移动它。这是我第一次使用jsp所以任何帮助都会很棒!

下面是我的代码:

.header{
background-color: crimson;
height: 15%;
}

.logo{
padding-left: 25px;
padding-right: 25px;
padding-top: 20px;
width: 21%;
color: black;
font-family: "Trebuchet MS",sans-serif;
font-weight: bold;
font-size: 80px;
border: ridge;
border-color: black;
border-width: thick;
}

.footer{
height: 2%;
text-align: center;
}

.body{
padding-top: 15%;
height: 400px;
}

.page{
	background-color: gainsboro;
}
<html>
<head>
<link rel="stylesheet" href="layoutstyle.css">
</head>
<div class="page">
<div class="header">
<div class="logo">
Bookie<small style="font-size: 30px">.com</small>
</div>
</div>
<div>

</div>
<div class="footer">
copyright @abc
</div>
</div>
</html>

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
   <jsp:include page="layout.html"/>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>LogIn</title>
</head>

<div class="body">
hi
</div>
</html>

请帮助!!

1 个答案:

答案 0 :(得分:0)

您在任何这些文件中都没有任何JSP代码。 JSP是<%%>标记中包含的Java代码。听起来你正在转移内容的问题可能是一个CSS问题。