jsp把两行字放到页面最中间代码
时间: 2024-09-22 17:09:46 浏览: 48
在JSP(JavaServer Pages)中,如果你想将文本放置在页面的垂直居中位置,你可以使用CSS(Cascading Style Sheets)来实现。这里有一个简单的例子:
```jsp
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.container {
display: flex;
justify-content: center; /* 水平居中 */
align-items: center; /* 垂直居中 */
height: 100vh; /* 全屏高度 */
}
.text-center {
text-align: center; /* 文本水平居中 */
}
</style>
</head>
<body>
<div class="container">
<div class="text-center">
<p>这是你要放的两行字</p>
<!-- 或者替换为你的其他文字 -->
</div>
</div>
</body>
</html>
```
在这个例子中,`.container`设置了全屏的高度,并使用`justify-content` 和 `align-items` 属性实现了元素的水平和垂直居中。`.text-center` 则用于设置文本自身的水平居中。
阅读全文