http://codepen.io/ethanclevenger91/pen/vNjOyP
编辑:此CodePen现在展示了各种提议的解决方案
如果您调整此笔中的可用空间,您会看到在顶部标题中,您最终会到达钻石(通过伪元素创建)将换行的点,但最后一个单词不会,所以伪元素就在它自己的行上。
我想使用纯CSS制作解决方案,其行为类似于第二个标题,如果伪元素断开,最后一个单词会中断。目前我已经通过Javascript实现了它,因为标题的内容将来自数据库。
HTML:
<div class="container">
<h1 class="alpha">A heading that takes up nearly the entire width</h1>
<h1 class="alpha solution1">A solution that would require Javascript</h1>
</div>
SCSS:
$brand-primary:lightblue;
$brand-secondary:darken(lightblue, 40%);
@mixin hidpi($ratio) {
@media (-webkit-min-device-pixel-ratio: $ratio), (min-resolution: #{round($ratio*96)}dpi) {
@content;
}
}
body {
position:relative;
height:100vh;
background:$brand-primary;
width:100%;
}
.container {
top:50%;
transform:translateY(-50%);
position:relative;
}
.alpha {
text-align:center;
color:$brand-secondary;
&:not(.solution1) {
&:after {
content:'';
@extend %diamond;
margin-left:11px;
}
}
&.solution1 {
.diamond {
@extend %diamond;
margin-left:11px;
}
}
}
%diamond {
width:13px;
height:14px;
display:inline-block;
transform:rotate(-45deg);
border:1px solid $brand-secondary;
vertical-align:middle;
@include hidpi(2) {
height:13px;
}
}
JS:
jQuery(document).ready(function($) {
var content = $('.solution1').html();
var lastChar = content.slice(-1);
$('.solution1').html(content.slice(0, -1)+'<span style="white-space:nowrap">'+lastChar+'<span class="diamond"></span></span>');
});
答案 0 :(得分:2)
您可以尝试使用white-space
来阻止h1
中的换行符,并将文本换行到恢复正常行为的span
元素中。
h1 {
white-space: nowrap;
}
h1 > span {
white-space: normal;
}
此外,Chrome还需要
h1 > span::after {
content: '';
white-space: nowrap;
}
body {
position: relative;
height: 100vh;
background: lightblue;
width: 100%;
}
.container {
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
position: relative;
}
.alpha {
text-align: center;
color: #2e7e99;
}
.alpha:after {
content: '';
width: 13px;
height: 14px;
display: inline-block;
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
border: 1px solid #2e7e99;
vertical-align: middle;
margin-left: 11px;
}
h1 {
white-space: nowrap;
}
h1 > span {
white-space: normal;
}
h1 > span::after {
content: '';
white-space: nowrap;
}
&#13;
<div class="container">
<div class="row">
<div class="col-xs-12">
<h1 class="alpha">
<span>A heading with a decorative pseudo-element that breaks by itself</span>
</h1>
</div>
</div>
</div>
&#13;
答案 1 :(得分:1)
您还可以使用UTF8的标准钻石:◇
。
如果您将:after
设为display: inline
它不会中断,因为您没有在最后一个字和它之间添加任何空格。
.alpha.solution3:after {
display: inline;
content: "◇";
font-weight: normal;
font-size: 1.2em;
}
<h1 class="alpha solution3">A solution that does not require Javascript neither a SPAN</h1>
如果此字符对您来说过于大胆,您可以制作自己的字体,使用font-face
并使用它。
http://codepen.io/anon/pen/BoxjzO
这也适用于不支持transform
的浏览器。