对于html与css的运用练习,目标:完成一个登陆界面。
代码如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>注册页面</title>
<style>
body{
background: url("image/fengxing.jpg" ) no-repeat center;
}
.layout{
width: 750px;
height: 450px;
border: 8px solid #EEEEEE;
background-color: white;
/*让div水平居中*/
margin: auto;
margin-top: 100px;
}
.left{
float: left;
}
.left p:first-child{
color:#FFD026;
font-size: 20px;
}
.left p:last-child{
color:#A6A6A6;
font-size: 20px;
}
.center{
float: left;
}
.right{
float: right;
}
.td_left{
width: 100px;