«
登录注册页面
MitSeek 发布于
阅读:49
CSS
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>登录和注册页面设计</title>
<style>
*{
margin: 0;
}
.content{
background-color: palevioletred;
position: absolute;/* 设置决定定位 */
width: 100%;
height: 100%;
display: flex; /* 使用flex进行布局 */
justify-content: center; /* 水平居中 */
align-items: center; /* 垂直居中 */
}
.main{
text-align: center; /* 文本居中 */
}
h2{
display: block;
font-family: "宋体";
font-size: 40px;
font-weight: bold;/* 设置字体加粗 */
}
input{
border: 1px solid white;
display: block;/* 设置块级元素 */
margin: 10px auto ;/* 外边框 */
padding: 5px;/* 内边框 */
width: 230px;
border-radius: 15px;/* 设置圆角边框 */
font-size: 18px;
font-weight: 300;
text-align: center;
}
button{
background-color: #20a7ff;
color: white;
margin: 2px;
padding: 5px;
width: 80px;
height: 30px;
border: 0;
border-radius: 10px;
}
</style>
</head>
<body>
<div class="content">
<div class="main">
<h2>欢迎你来到这里</h2>
<form action="">
<input type="text" placeholder="用户名"/>
<input type="possword" placeholder="密码" />
<p>
<button type="submit">登 录</button>
<button type="submit">注 册</button>
</p>
</form>
</div>
</div>
</body>
</html>
CSS