我的html文件中的每个文本元素,无论是在引导程序的容器内还是在另一个div中,对于我尝试过的内容而言都是不透明的:background:transparent!important,具有rgba opacity的background-color,并本身添加了不透明度。

这是HTML + CSS:

html {
    background: url(background.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

@font-face {
  font-family: "elephant";
  src: url("elephnt.ttf");
}

#frontpage{
  background: transparent;
}

@media(max-width: 480px) {
  h1 {
    font-size: 12pt;
  }
}
#title
{
color: rgb(255, 255, 255);
font-size: 50px;
text-shadow: rgb(3, 3, 3) -1px 4px 9px;
}
</style>
</head>

<body>
<div class="container-fluid" style="background:transparent;" >


 <h1 id="title">Butt</h1>


</div>
</body>

最佳答案

Bootstrap具有默认的白色背景色

body {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff; /* here */
}


您需要覆盖它。



html {
  background: url(http://lorempixel.com/image_output/fashion-q-c-640-480-8.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@font-face {
  font-family: "elephant";
  src: url("elephnt.ttf");
}
@media(max-width: 480px) {
  h1 {
    font-size: 12pt;
  }
}
#title {
  color: rgb(255, 255, 255);
  font-size: 50px;
  text-shadow: rgb(3, 3, 3) -1px 4px 9px;
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background-color: transparent !important;
  /* important used here for demo */
}

<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet" />
<div class="container-fluid">


  <h1 id="title">Butt</h1>


</div>

关于css - Bootstrap容器背景只能是白色或其他颜色/图像,但不能透明,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35331726/

10-16 05:05