html - 如何更改超大屏幕的背景颜色?

标签 html css twitter-bootstrap twitter-bootstrap-3 background-color

我想知道如何更改 'jumbotron' 类的背景颜色,它在 bootstrap.css 中有一个默认的 background-color #eee

我试图通过删除它并将属性 none,none !important, transparent 赋予我的自定义 css 来覆盖,但仍然没有不工作。

我尝试检查浏览器窗口中的元素并删除那里的属性以查看是否有任何更改,它仍然是同样的问题。

它将采用任何其他颜色,除了完全移除该颜色。我问这个的原因是因为我有一个完整的背景图像并且希望 jumbotron 简单地透明而没有背景或颜色。除非,

我也遗漏了 BootStrap 3.1.1 文档中的一些内容,我也在其中进行了检查。

注意:我会使用 jsfiddle.net 轻松地向您展示,但它不支持 3.1.1,并且不确定如何在其中实现 Bootstrap 。

HTML

<title>Full Page Image Background Template for Bootstrap 3</title>

<!-- Bootstrap core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">

<!-- Custom CSS for the 'Full' Template -->
<link href="css/full.css" rel="stylesheet">

<!--Displays the Navigation Bar Style-->
<div class="navbar navbar-default navbar-fixed-top">
    <!--Displays the Navigation Bar Content-->
    <div class="navbar-header">
        <!-- displays the icon bar in responsive view; when clicked reveals a list-->
        <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-responsive-collapse">
            <!-- displays the icon bars in responsive view;-->
            <span class="icon-bar"></span>
            <span class="icon-bar"></span>
            <span class="icon-bar"></span>
        </button>
        <!--Brand, Logo of your website-->
        <a class="navbar-brand" href="#">Virtual Productionz, Inc.</a>
    </div>

    <!-- Allows collapse/show navbar in responsive view-->
    <div class="navbar-collapse collapse navbar-responsive-collapse">
        <ul class="nav navbar-nav">
          <li class="active"><a href="#">Home</a></li>
          <li><a href="#">About Us</a></li>
          <!-- Dropdown menu-->
          <li class="dropdown">
            <a href="#" class="dropdown-toggle" data-toggle="dropdown">Products <b class="caret"></b></a>
            <ul class="dropdown-menu">
              <li><a href="#">Integrated Laser Keyboard</a></li>
              <li><a href="#">More...</a></li>
            </ul>
          </li>
          <li><a href="#">Contact Us</a></li>
        </ul>
    </div>
</div>


<div class="jumbotron">
    <h1>Welcome!</h1>
    <p>We're an awesome company that creates virtual things for portable devices.</p>
    <p><a class="btn btn-primary btn-lg" role="button">Learn more</a></p>
</div>


<!-- JavaScript -->
<script src="js/jquery-1.10.2.js"></script>
<script src="js/bootstrap.js"></script>

CSS(带 bootstrap.css)

@import url("bootstrap.min.css");
@import url("bootstrap-theme.css");

body {
margin-top: 50px; /* 50px is the height of the navbar - change this if the navbarn height changes */
}

.full {
 /*background: url(http://placehold.it/1920x1080) no-repeat center center fixed;*/
 background: url("../images/laser_keyboard.jpg") no-repeat center center fixed;
 -webkit-background-size: cover;
 -moz-background-size: cover;
 -o-background-size: cover;
 background-size: cover;
}

.jumbotron{
color: #FFFFFF;
/*background-color:none !important;*/
}

最佳答案

试试这个:

<div style="background:transparent !important" class="jumbotron">
    <h1>Welcome!</h1>
    <p>We're an awesome company that creates virtual things for portable devices.</p>
    <p><a class="btn btn-primary btn-lg" role="button">Learn more</a></p>
</div>

内联 CSS 优先于 .css 中定义的类文件和内部声明的类 <style>

关于html - 如何更改超大屏幕的背景颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22904102/

相关文章:

javascript - Fabricjs在 Canvas 中复制html

javascript - 自动滚动到 Div

html - JQuery 手机 : Dynamically collapsible doesn't work

html - CSS :hover not working in pratice

html - Bootstrap 。删除缩略图周围的边框

HTML选择标签更改箭头使用雪碧

html - 2 元素填充剩余高度

jquery - 输入框不显示

html - 表格单元格中一行的文本和复选框,bootstrap

java - 在 Java Servlet 中读取文件到字符串