CSS百分比布局太过分了

时间:2017-02-07 19:11:33

标签: css layout

我有css问题。我不知道它为什么会发生。这是关于网站css的图片。

This is what is going on.

2 个答案:

答案 0 :(得分:1)

您的内容区域的宽度是100%,并且该宽度是从正文继承的。我认为你应该使用这样的东西

<?php
class Model {

    public function returnThisValue() {
        return "hello";
    }
}
?>
    .container { 
      border : 2px solid #000; 
      overflow:hidden;
    }

    #one {
      background-color: gray;
      float:left; 
      padding:15px;
      width:50px;
      border-right:2px solid #000;
      height:200px;
    }
    #two { 
      background-color: gray;
      float:left;
      padding:15px;
      width:300px;
      height:200px;
      border-right:2px solid #000;
    }
    
    #three { 
      background-color: white;
      width:300px;
      height:200px;
      border-right:2px solid #000;
    }

答案 1 :(得分:0)

看起来您可能缺少某些标签,或者您需要为所有元素的容器定义宽度。

另一种选择是隐藏溢出。

如果CSS说宽度为100%,并且它超过了该区域,则表示您没有正确设置div。

如果没有您提供任何代码,将很难为您提供帮助。