php - 使用 PHP ob_start() 缓冲输出时,最小高度 CSS 属性不起作用

标签 php css ob-start

我实际上正在开发一个使用 MVC 结构的 PHP 元素,包括在使用 ob°start() 的输出缓冲期间通过单个文件的 DOCTYPE 和 HEAD 标记。

当我想为可能的页面容器声明一个最小高度属性时,问题就来了,以便将页脚粘贴在页面的底部。 ob_start() -- ob_get_clean() 使用似乎禁止浏览器及时访问这些属性,因此它们无法评估高度值。

这是我的 index.php 文件:

<?php
include_once('global/init.php');
ob_start();
if(isset($_GET['module'])){
    $module = dirname(__FILE__).'/modules/'.htmlspecialchars($_GET['module']).'/';
    $action = (isset($_GET['action'])) ? htmlspecialchars($_GET['action']).'.php' : 'index.php';
    if(!file_exists($module.$action)){
        include('global/home.php');
    }else{
        include($module.$action);
    }
}else{
    include('global/home.php');
}
$content = ob_get_clean();
include_once('global/header.php');
echo $content;
include_once('global/footer.php');

header.php 文件包含 doctype 和 html 的第一个基础知识:

<html>
<head>
    <meta charset='UTF-8' />
    <title><?php echo "LiveSession".' '.DOMAIN_INFOS;?></title>
    <meta name='description' content='<?php echo $_SESSION['currentDesc'];?>' />
    <meta name='keywords' content='<?php echo $_SESSION['currentKWds'];?>' />
    <link rel='stylesheet' media='screen and (max-width:480px)' href='css/smartphones.css' />
    <!-- TABLETS -->
    <script type='text/javascript' src='scripts/jquery.1.7.js'></script>
    <script type='text/javascript' src='scripts/poll_edit.js'></script>
    <script type='text/javascript' src='scripts/smartphones.js'></script>
</head>
<body>
    <div id='page'>
        <div id='header'>
            <h1><a href='index.php'>InteractivePollSession</a></h1>
            <?php
                if(is_connected_user()){
                    echo "<span id='disconnector'><a href='index.php?module=members&amp;action=dscnx' title='disconnect'>Disconnect</a></span>";
                }
            ?>
        </div>
        <div id='contentWrap'>

页脚:

            </div>
        <div id='footer'>
            <span id='central-footer'>&copy; <a href='http://www.jsteitgen.com'>JSTeitgen</a></span>
        </div>
    </div>
</body>

还有一个基本的 CSS 示例:

body{height:100%;}
#page{min-height:100%; position:relative;}
#footer{position:absolute; bottom:0; width:100%;}

有人知道如何使用 ob_start() 解决这个问题吗? 当然,除此之外,所有其他 CSS 规则都可以正常工作......

谢谢

JS

最佳答案

ob_start() 不是问题所在。问题只是 html/css 问题。如果元素的父元素具有固定高度,则只能使用百分比高度。

在您的例子中,#page 父级是 body 并且 body 的高度是 100%,所以您不能为 #page 使用百分比高度。但是你可以试试这个,例如:

body{height: 1000px;}
#page{min-height:100%; position:relative;}
#footer{position:absolute; bottom:0; width:100%;}

关于php - 使用 PHP ob_start() 缓冲输出时,最小高度 CSS 属性不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14481836/

相关文章:

php - 增量总数

PHP cURL 在发布到虚拟主机时说永久移动

javascript - CSS之谜,不知道如何修改一段代码

PHP ob_flush() 导致错误

php - WAMP 和 mysqli::real_connect(): (HY000/2002)?

php - 无法安装phpunit,结论: don't install phpunit/phpunit 6. 5.8

html - Flex Boxes 左对齐效果

javascript - 如何制作搜索属性值然后根据用户输入隐藏或显示元素的搜索框?

php - ob_get_clean,只工作两次

php - ob_start 没有执行回调