我正在嘗試實現以下內容;旋轉文本不是問題,但它下面的行是。它應該根據文本的長度而改變。意思是文本長度變化時線條會相應縮小或擴大。文本的頂部應保持在同一位置。垂直文本旁邊的垂直線
任何想法?
編輯:
是我到目前爲止已經試過(忽略柔性):
<section class="slideshow">
<div class="forsale">
<a href="#">te koop</a>
<span></span>
</div>
<img src="./img/project_1.jpg" alt="">
</section>
.forsale {
position: relative;
a {
position: absolute;
transform: rotate(-90deg) translate(0 ,100%;
transform-origin:0% 0%;
background-color: #eee;
display: block;
text-decoration: none;
color: black;
width: 385px;
}
span {
display: block;
width: 1px;
height: 100%;
background-color: black;
position: absolute;
left: 50%;
bottom: 0;
}
}
一些標記和例子你試過什麼,什麼你想獲得幫助。 – BenM
請檢查此鏈接:-http://stackoverflow.com/questions/8865458/how-to-vertically-center-text-with-css –
@ Gerrit0我已經編輯了帖子。 –