0
我想要實現的佈局顯示此圖像中: 試圖讓垂直文本底部對齊
下面的HTML是沒有工作的許多嘗試之一。這個項目的目標僅僅是在最新的瀏覽器中定位HTML5,所以除了最新的Chrome,Safari,Firefox和IE9測試版之外,沒有必要使用它。
<!DOCTYPE html>
<html>
<body>
<div style="border: solid 1px red; width:600px; height: 600px">
<span style="-webkit-transform:rotate(-
90deg);display:block;position:absolute;bottom:600px">My Vertical Text</span>
<img src="http://www.gizmodo.com/assets/resources/2007/01/Bill-gates-mugshot.jpg"
style="position:absolute;bottom:600px" />
</div>
</body>
</html>
哇,這是有效的。非常令人印象深刻。只是一件事 - 左圖:圖像上的30px假定文本的寬度。是不是可以讓圖像自動浮動到文本的右側? – Nestor 2010-10-01 09:21:26
@Nestor不是真的,至少不是這種方法,儘管你可以嘗試使用em單位,如果有幫助的話。 – 2010-10-01 09:47:22