在div边界的文本有透明背景

时间:2015-06-02 23:23:46

标签: html css css3 background-image transparent

如何在border div上放置一些文字,以便文字的transparent background与后面的图像相匹配?

问题是background-image有一些形状多种颜色,所以我不能只为文本添加一些背景颜色,因为它赢了不合适。

示例:

html,
body {
  width: 100%;
  height: 100%;
}
body {
  margin: 0;
  background: url(http://wallpoper.com/images/00/45/05/47/green-background-2_00450547.jpg);
}
#main {
  margin-top: 100px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  border: 1px solid #000000;
}
#main h2 {
  font-size: 60px;
  font-weight: 700;
  text-align: center;
  margin: -40px 0 0;
  background: transparent; /* somehow remove the border behind the text */
  padding: 0 20px;
}
<div id="main">
  <h2>Star players</h2>
  <ul>
    <li>foo</li>
    <li>bar</li>
  </ul>
</div>

JSFiddle

2 个答案:

答案 0 :(得分:4)

您可以使用字段集而不是div:

HTML:

<fieldset>
    <legend>Test</legend>
</fieldset>

CSS:

legend {
    text-align: center;
    width: 100%;
}

答案 1 :(得分:1)

所以你想在文本后面看两层,而不是两者之间的另一件事...这本身就是反直觉的。除非你使用边框图像和css渐变,这总是有点复杂,并且这不会取决于文本的大小/宽度,所以不确定你能够做到这一点。

e.g。

HTML

<div class="gradborder-box"><div class="inner"><h2>Hello WORLD</h2></div></div>

CSS

.gradborder-box{
margin: auto;
  width: 350px;

  background: transparent;
  border: 2px solid transparent;

  -webkit-border-image: -webkit-linear-gradient(left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 26%, rgba(0,0,0,0) 68%, rgba(0,0,0,1) 100%);
  border-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 26%, rgba(0,0,0,0) 68%, rgba(0,0,0,1) 100%);
  border-image-slice: 1;
}

h2 {font-size:1.2em; text-align:center; margin-top:-10px;} .inner {身高:150px;宽度:100%; border-bottom:2px solid#000; margin-bottom:-2px;}

CodePen

这已经为CHROME做了 - 你需要为其他浏览器添加正确的边框图像标签(-moz-border-image等)。这只是CSS3。