0
當我旋轉某個跨度時,那裏的文本不會水平對齊。 你可以看到下面的例子。 在這個例子中,我們有三個可以旋轉的跨度,但是我們有對齊的問題。旋轉後文本的位置
body{
padding-left:10px;
}
.bordered{
border-left: 2px solid gray;
position: relative;
padding-top: 4em;
padding-bottom: 4em;
padding-left: 1em;
}
.bordered>span{
display: block;
background-color: #ccc;
padding: 0.34em;
font-weight: 300;
font-size: 0.8em;
color: gray;
position: absolute;
-webkit-transform: rotate(90deg);
margin: 0;
left: -2em;
top: ms(3);
}
<section class="hexa-container">
<section class="hexa-content bordered">
<span>Services</span>
</section>
</section>
<section class="hexa-container">
<section class="hexa-content bordered">
<span>Works</span>
</section>
</section>
<section class="hexa-container">
<section class="hexa-content bordered">
<span>Blog</span>
</section>
</section>
你怎麼想跨度的樣子? – CodeRomeos
我希望跨度完全遵循對方。您可以看到「作品」跨度與「服務」和「博客」跨度不完全相同。 – Hamid