登陆界面大体
Posted 枚齐元子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了登陆界面大体相关的知识,希望对你有一定的参考价值。
<html>
<head>
<style type="text/css">
#login{
width: 300px;
height: 200px;
position: absolute;
left: 50%;
top: 50%;
margin-left: -150px;
margin-top: -100px;
background: #BABABA;
}
a{
text-decoration:none;
color:#f0000f;
}
a:hover{
position: relative;
left: 1px;
top: 1px;
cursor:pointer;
}
</style>
</head>
<body>
<div id="login"><a href="#">登陆123</a></div>
</body>
</html>
以上是关于登陆界面大体的主要内容,如果未能解决你的问题,请参考以下文章
Ubuntu 12.10图形化界面登陆root用户,不显示登陆界面
用java做好的登陆界面,当登陆成功后跳转到下个页面的代码是啥?