屏幕底部而不是页面底部的页脚

时间:2016-01-15 03:43:43

标签: php html css

我正在尝试使用OOP来设计我的网站。我有一个函数调用我的页面内容导航栏,正文和页脚的每个部分。我注意到无论我做什么,页脚都停留在屏幕底部而不是页面底部。见下图enter image description here 这就是我调用我的页面内容的方式

public function  run()
{
  echo $this->getHTML_Header().          
         $this->getMainStyles().$this->getBootstrapScript().$this->getBootstrapStyles().
           $this->getCloseHTML_Header().
            $this->getMainScript().
              $this->getNavBar().
               $this->getSlider().
               $this->getBlogPosts().
       $this->getFootBar(); 
}

0 个答案:

没有答案