【发布时间】:2010-10-01 17:16:11
【问题描述】:
我想要实现的布局如下图所示:
下面的 HTML 是许多失败的尝试之一。这个项目只针对最新浏览器中的 HTML5,因此除了最新的 Chrome、Safari、Firefox 和(以及后续风)IE9 beta 之外,它不需要在任何东西上工作。
<!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>
【问题讨论】: