div 边框上的文本具有透明背景
Text on div border with transparent background
如何在 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>
您可以使用字段集代替 div:
HTML:
<fieldset>
<legend>Test</legend>
</fieldset>
CSS:
legend {
text-align: center;
width: 100%;
}
所以你想看到文本后面 2 层的东西,而不是两者之间的另一件事......这本身就是违反直觉的。不确定你是否能够做到这一点,除非你使用边框图像和 css 渐变,这总是有点复杂,这不会依赖于文本的 size/width。
例如
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{字体大小:1.2em;文本对齐:居中;边距顶部:-10px;}
.inner{height: 150px;宽度:100%; border-bottom: 2px solid #000;底部边距:-2px;}
已为 CHROME 完成此操作 - 您需要为其他浏览器(-moz-border-image 等)添加正确的边框图像标签。这只是 CSS3。
如何在 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>
您可以使用字段集代替 div:
HTML:
<fieldset>
<legend>Test</legend>
</fieldset>
CSS:
legend {
text-align: center;
width: 100%;
}
所以你想看到文本后面 2 层的东西,而不是两者之间的另一件事......这本身就是违反直觉的。不确定你是否能够做到这一点,除非你使用边框图像和 css 渐变,这总是有点复杂,这不会依赖于文本的 size/width。
例如
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{字体大小:1.2em;文本对齐:居中;边距顶部:-10px;} .inner{height: 150px;宽度:100%; border-bottom: 2px solid #000;底部边距:-2px;}
已为 CHROME 完成此操作 - 您需要为其他浏览器(-moz-border-image 等)添加正确的边框图像标签。这只是 CSS3。