I ve创建了基本布局,网页上有2个链接、1个登记册和1个 log。
审视我的黑手脚联系,看看看它如何看待。 有一个黑色的盒子,即原木,你将看到绿箱和蓝箱,它们是我的 but子。
I need them at the top of the page.
不清楚我是否需要与安保部做些什么,才能使链接站在首页上?
传真:
<div id="accountLinks">
<ul>
<li class="login"><a href="#">Log in</a></li>
<li class="register"><a href="#">Register</a></li>
</ul>
</div>
CSS:
#accountLinks{
float: right;
height:20px;
width: 170px;
margin: 0;
padding: 0;
}
#accountLinks ul{
list-style-type: none;
margin: 0;
padding: 0;
}
#accountLinks li{
float: left;
text-align: center;
}
#accountLinks .login{
background: url(../images/button_login.gif) no-repeat;
width: 70px;
height: 20px;
color: #FFF;
}
#accountLinks .register{
background: url(../images/button_register.gif) no-repeat;
width: 70px;
height: 20px;
color: #FFF;
}
Thanks