虽然testingJSP
文件,我得到的问题,显示在屏幕上,因为对齐:
我希望文本居中对齐,顶部没有配置标题。
下面是JSP
文件的示例:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<%@include file="/includes/head.jsp"%>
<style type="text/css">
body {
background-color: rgba(26, 35, 115, 0.47);
color: #fff;
}
</style>
</head>
<body class="text-center vsc-initialized">
<%@include file="/includes/header.jsp"%>
<div class="cover-container d-flex h-100 p-3 mx-auto flex-column">
<main role="main" class="inner cover">
<h1 class="cover-heading">Welcome</h1>
<h1 class="cover-heading">to</h1>
<h1 class="cover-heading">Project Management</h1>
<h1 class="cover-heading">System</h1>
</main></div>
<%@include file="/includes/footer.jsp"%>
</body>
</html>
有谁能告诉我,是CSS
的问题还是JSP
的问题?我需要修复JSP
中的一些东西才能得到另一个显示结果吗?
如果您需要一些 * 其他信息 *,我随时准备更新此问题。
我很感激这里的任何建议/想法。
1条答案
按热度按时间vecaoik11#
问题不是
css
特有的,而是显示的方式。在我改变了
path
和application.properties
内部的显示方式之后:而不是:
致:
和
JSP
文件的location
:而不是文件夹:
到文件夹:
在
JSP
中使用CSS
样式时 * 对齐 * 的问题已修复。