当浏览器调整大小后绝对定位伪元素溢出并导致问题。我正在寻找解决这个问题的方法。只需调整浏览器大小,直到您显示标题文字。
以下是问题的演示:http://codepen.io/anon/pen/grKNoJ
.section {
font-family: 'Quantico';
font-weight: bold;
font-size: 36px;
color: white;
border-top: solid 1px black;
text-transform: uppercase;
margin-bottom: 28px;
}
.section-title {
background-color: black;
display: inline-block;
padding: 8px 18px;
position: relative;
}
.section-title:after {
content: " ";
position: absolute;
display: block;
right: 0;
height: 100%;
top: 0;
left: 0;
z-index: -1;
background: #000;
transform-origin: bottom left;
-ms-transform: skew(-30deg, 0deg);
-webkit-transform: skew(-30deg, 0deg);
transform: skew(-30deg, 0deg);
}
答案 0 :(得分:1)
您可以通过将text-overflow: ellipsis;
和white-space: nowrap;
添加到.section-title
来解决此问题。
您还可以为该元素设置max-width
,并根据您的媒体查询将其设置为不同的值,并让它满足您在不同设备上的需求。
以下是更新后的结果:http://codepen.io/johnnykb/pen/mPKZLg