我正在尝试将我的主页分为两个区域,一个在上面(白色),另一个在下面(黑色)。
该页面旨在以 50% 垂直分割,并且工作正常。
两个区域都有一个标题,顶部的白色区域(应该在它的底部有标题),而下面的黑暗区域应该在它的上面有标题。这样,两个标题就位于页面的中心。
我唯一的问题是我找不到方法来降低上部区域的标题。最快的方法是使用 padding-top 和 %,但是这样填充会导致页面宽度的 % 而不是它的高度。
你知道如何解决这个问题吗?
HTML
<div>
<div style="height:50%; width:100%; background-color:#FFFFFF">
<a href="http://www.lorenzomeschini.com/architecture"; onMouseOver="this.style.color='#FCB415'" onMouseOut="this.style.color='#cccccc'" style="text-align:center; font-family:Tahoma, Geneva, sans-serif; color:#dddddd; font-size:19px; letter-spacing:0.22em; height:100%">architecture</a>
</div>
<div style="position: absolute; bottom:0;width:100%;height:50%">
<a href="http://www.lorenzomeschini.com/photography"; onMouseOver="this.style.color='#FCB415'" onMouseOut="this.style.color='#cccccc'" style="text-align:center; font-family:Tahoma, Geneva, sans-serif; color:#cccccc; font-size:19px; letter-spacing:0.21em; height:100%">photography</a>
</div>
</div>
</body>
CSS
body {
background-color: #1E1E1E;
margin: 0;
padding: 0;
color: #919191;
font-family: "Courier New", Courier, monospace;
font-size: 13px;
太感谢了