如何自定义容器宽度

时间:2016-09-27 14:09:41

标签: css twitter-bootstrap-3

我想在bootstrap中自定义类容器的宽度。 我想获得的宽度是 670px 。 我定制了bootstrap.css文件(http://getbootstrap.com/customize/)以获得我自己的版本 下面的代码显示了容器的定制方式 从749px开始宽度不会如预期的那样变化。 你知道怎么解决吗?

@media (min-width: 768px) {
.container {
width: 670px;
background: green;
}
 }

@media (min-width: 992px) {
.container {
 width: 670px;
}
}
@media (min-width: 1200px) {
.container {
 width: 670px;
}
 }

1 个答案:

答案 0 :(得分:-1)

添加重要的'在值之后,像这样的代码:      @media(min-width:768px){     。容器 {     宽度:670px!重要;     背景:绿色;     }      }

abstract class Singleton {

    private static $instances;

    final public static function getInstance() {
        $className = get_called_class();

        if(isset(self::$instances[$className]) == false) {
            self::$instances[$className] = new static();
        }
        return self::$instances[$className];
    }

    protected function  __construct() { }

}