當瀏覽器被調整大小後,絕對定位在僞元素溢出並導致問題。我正在尋找解決這個問題的方法。只需調整瀏覽器的大小,直到找到標題文本。響應標題與角度一側
這是問題的一個演示: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);
}
相關(或可能重複)http://stackoverflow.com/questions/30441122/shape-with-a-slanted-side-responsive – Harry
@Harry及其相關但我認爲它不是愚蠢的,因爲這涉及文字 – GorillaApe