gpt4 book ai didi

php - 发送php表单后,如何编辑 'new'确认页面?

转载 作者:行者123 更新时间:2023-11-28 00:23:04 25 4
gpt4 key购买 nike

PHP 联系表单已发送并显示一条确认消息:我需要白色背景的 div 来填满列。如果我在消息上放置边距,它会破坏如图所示的布局。我仍然在思考 PHP 逻辑在交互方面的结构,不确定到底在哪里调整它并解决问题。

我的代码结构如下:

<div id="whitebox" class="whitebox">
<div class="text-center orange-navbar">
<nav role="navigation">
<ul class="navcen nav nav-pills" >
<li role="presentation"><a href="index.html">Home</a></li>
<li role="presentation"><a href="portfolio.html">Portfolio</a></li>
<li class="active" role="presentation"><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>


<?php if(!empty($emailSent)): ?>
<div class="col-md-6 col-md-offset-3">
<div class="alert alert-success text-center"><?php echo $config->get('messages.success'); ?></div>
</div>
<?php else: ?>
<?php if(!empty($hasError)): ?>
<div class="col-md-5 col-md-offset-4">
<div class="alert alert-danger text-center"><?php echo $config->get('messages.error'); ?></div>
</div>
<?php endif; ?>

Contact form success response

最佳答案

将此添加到您的 CSS:

.whitebox {
height: 100vh;
}

这将使您的 whitebox div 的高度为视口(viewport)的 100%。

关于php - 发送php表单后,如何编辑 'new'确认页面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54786133/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com