摘要:跟著老師視頻做的一個(gè)css邊框小練習(xí)<!DOCTYPE> <html> <head> <meta charset="utf-8"> <title> css——邊框 </title> &nbs
跟著老師視頻做的一個(gè)css邊框小練習(xí)
<!DOCTYPE>
<html>
<head>
<meta charset="utf-8">
<title> css——邊框 </title>
<style type="text/css">
.box{width:100px;height:100px;border:1px solid #ccc;border-radius:20px;}
.main{width:100px;height:100px;border-top: 1px solid red;background:#ccc;}
.shadow{width:300px;height:40px;box-shadow: 5px 5px #ccc inset;border:1px solid #ccc ;}
button{border:none;}
</style>
</head>
<body>
<div class="box"></div>
<div class="main"></div>
<button>登錄</button>
<div class="shadow"></div>
</body>
</html>
批改老師:滅絕師太批改時(shí)間:2019-02-14 13:02:22
老師總結(jié):學(xué)習(xí)到后面,跟著老師上課的例子做練習(xí)就不夠了,學(xué)會(huì)找點(diǎn)網(wǎng)頁案例練手