我有一些文字旋轉了90度。有誰知道一種方法讓它錨定到父元素的上限?錨定旋轉文本到父元素的頂部
到目前爲止,我已經能夠僅僅以固定在地板:
HTML:
<div>
<h2>hello, world</h2>
</div>
CSS:
div { height: 300px; background: red; position: relative; }
h2 {
color: white;
margin: 0;
font-size: 2.5em;
-webkit-transform: rotate(-90deg);
-webkit-transform-origin: bottom left;
position: absolute;
left: 1.5em;
bottom: 0;
}
將bottom: 0
更改爲top: 0
會產生奇怪的結果;文字既沒有固定在天花板上,也沒有固定在天花板的右邊。
有誰知道一個純粹的CSS方式嗎?
像[這個(http://jsfiddle.net/tpm3f/8/)? –
對不起,這仍然是我所能看到的。 – Utkanos