如何将php文本放在页面中间?

时间:2015-12-28 08:31:33

标签: html css text center

我想将此文本(无效密钥)置于页面中间,在PHP代码中垂直和水平:

if ($_GET['key'] != "lol"){
die("
<center>
<hr>
<h1><b>Invalid Key</b></h1>
<hr>
</center>
");

请问怎么样?提前谢谢。

1 个答案:

答案 0 :(得分:1)

在HTML文档中 - 包括那些由PHP预处理的文档 - 演示文稿由CSS(级联样式表)处理:

<强> PHP:

if ($_GET['key'] != "lol"){
die("
<h1>Invalid Key</h1>
");

<强> CSS:

h1 {
position: relative;
top: calc(50vh - 50px);
height: 56px;
line-height: 56px;
padding: 20px 0;
border-top: 2px solid rgb(120,120,120);
border-bottom: 2px solid rgb(120,120,120);
text-align: center;
font-weight: bold;
}