abstract:<!DOCTYPE html><html lang="en"> <head> <meta charset="UTF-8"> &
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
.login {
width:500px;
height:300px;
border: 1px solid #ccc;
border-radius: 10px;
box-shadow: 0px 5px 10px #ccc;
}
.nav{
width:1000px;
height:50px;
border:1px solid #ccc;
border-radius: 5px;
box-shadow:0px 0px 20px #ccc inset;
margin-top:50px;
line-height:50px;
}
</style>
</head>
<body>
<div class="login">
我是登錄框
</div>
<div class="nav">
我是導(dǎo)航條
</div>
</body>
</html>
Correcting teacher:韋小寶Correction time:2019-01-30 13:27:44
Teacher's summary:寫的很不錯 css一定要多練習(xí) 這樣才能熟練的掌握 在以后的開發(fā)中就可以輕松了