我正在尝试为我的标题创建一个类似于我的徽标的样式,如下所示:
所以我为标题添加了一些CSS来创建一些像这样的色带:
body {
text-align: center;
}
h1,
h2 {
color: white;
background-color: #f3a692;
text-shadow: -1px 1px rgba(208,96,0,0.5);
display: inline-block;
line-height: 1.6em !important;
padding: 0 10px !important;
margin-bottom: 20px;
}
h1:before,
h2:before {
border-left-color: transparent !important;
transform: translateX(-100%);
}
h1:after,
h2:after {
border-right-color: transparent !important;
}
h1:after,
h1:before,
h2:after,
h2:before {
content: '';
border-color: #f3a692;
border-style: solid;
border-width: 0.8em;
position: absolute;
}
<body>
<h1>Hello World</h1>
<p>This is just a small test</p>
<h2>Okay, thats nice!</h2>
<p>Here is some more text for no particular reason.</p>
</body>
它几乎可以按照我想要的方式工作但是我有一些问题我无法解决这个问题。我希望你能帮助我搞清楚我做错了什么:
答案 0 :(得分:1)
由于在没有嵌套元素的情况下无法实现,因此请考虑通过标题元素 2 1 >包含在页面中,并使用可以作为选择器 4 3 >。
在指定元素中包装文本节点
.each()
方法.ribbon
)for
循环和组合/加入来完成
包含在指定元素中的文本节点inline
span 声明样式
样式需要调整,以将大多数设计属性声明为嵌套的span
元素。
line-height
和border-width
属性,以便在不同的视口大小内保持一致性(可以优先考虑absolute <length>
值,使用px
单位而不是relative <length>
值,使用em
个单位)
.ribbon {
max-width: 92%; /* allow space to prevent pseudo-elements overflowing horizontally */
word-wrap: break-word; /* allow word wrapping */
margin: 0 auto 20px auto;
}
.ribbon span {
color: white;
background-color: #f3a692;
text-shadow: -1px 1px rgba(208, 96, 0, 0.5);
display: inline-block;
line-height: 50px; /* adjusted */
padding: 0 5px;
box-sizing: border-box;
margin-bottom: 10px; /* allow vertical spacing between sibling elements */
}
代码段示范:
$('.ribbon').each(function(){
var textNodes = $(this).text().split(' ');
var output = '';
for(var i=0; i < textNodes.length; i++) {
output += '<span>'+textNodes[i]+'</span>';
}
$(this).html(output);
});
/* || start additional */
.ribbon {
max-width: 92%; /* allow space, left & right, to prevent pseudo-elements overflowing horizontally */
word-wrap: break-word; /* allow word wrapping */
margin: 0 auto 20px auto;
}
.ribbon span {
color: white;
background-color: #f3a692;
text-shadow: -1px 1px rgba(208, 96, 0, 0.5);
display: inline-block;
line-height: 50px; /* adjusted */
padding: 0 5px;
box-sizing: border-box;
margin-bottom: 10px; /* allow vertical spacing between sibling elements */
}
.resize { /* for the sake of demonstration */
resize: auto;
display: block;
overflow: hidden;
height: 100%;
border: 2px dashed gray;
position: relative;
}
/* end additional */
body {
text-align: center;
box-sizing: border-box; /* additional */
}
/*h1,
h2 {
color: white;
background-color: #f3a692;
text-shadow: -1px 1px rgba(208, 96, 0, 0.5);
display: inline-block;
line-height: 1.6em !important;
padding: 0 10px !important;
margin-bottom: 20px;
}*/
.ribbon:before,
.ribbon:before {
border-left-color: transparent !important;
transform: translateX(-100%);
}
.ribbon:after,
.ribbon:after {
border-right-color: transparent !important;
}
.ribbon:after,
.ribbon:before,
.ribbon:after,
.ribbon:before {
content: '';
border-color: #f3a692;
border-style: solid;
border-width: 25px; /* adjusted */ /* equal to half the line height of sibling span elements */
position: absolute;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<body>
<div class="resize">
<h1 class="ribbon">Wrapping text nodes in a specified element.</h1>
<h1 class="ribbon">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</h1>
<h2 class="ribbon">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</h2>
</div>
</body>
答案 1 :(得分:0)
我看到解决问题的唯一解决方案是将线条放入跨度。 这样,您可以控制中断,并且当宽度下降时,它们将被放入单独的行中。这是工作片段。
span元素上的 ::after
和::before
只是为了美学,所以这条线看起来并没有被切断&#34;。
body {
text-align: center;
width:500px; /* only for demonstration purposes */
}
h1,
h2 {
color: white;
background-color: transparent;
text-shadow: -1px 1px rgba(208,96,0,0.5);
display: inline-block;
line-height: 1.6em !important;
padding: 0 10px !important;
margin-bottom: 20px;
position:relative;
}
h1 span, h2 span {
height: 1.6em !important;
background-color:#f3a692;
display:inline-block;
white-space:nowrap;
padding:0;
margin-bottom:20px;
position:relative;
}
h1 span::before, h1 span::after, h2 span::before, h2 span::after {
content: ' ';
background-color:#f3a692;
position:absolute;
left:-10px;
width:10px;
height:100%;
}
h1 span::before, h2 span::before { left:-10px; }
h1 span::after, h2 span::after { left:auto; right:-10px; }
h1:before,
h2:before {
border-left-color: transparent !important;
transform: translateX(-100%);
}
h1:after,
h2:after {
border-right-color: transparent !important;
}
h1:after,
h1:before,
h2:after,
h2:before {
content: '';
border-color: #f3a692;
border-style: solid;
border-width: 0.8em;
position: absolute;
}
&#13;
<body>
<!-- Make sure there is no whitespace between spans and h1 -->
<h1><span>Hello World </span><span>Some random text here</span></h1>
<p>This is just a small test</p>
<h2><span>Okay, thats nice!</span></h2>
<p>Here is some more text for no particular reason.</p>
</body>
&#13;