摘要:<!DOCTYPE html><html lang="zh-cn"><head> <meta charset="UTF-8"> <title>css 邊框</title> <meta name="vi
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<title>css 邊框</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" type="image/x-icon" href="image/icon.png">
<link rel="stylesheet" type="text/css" href="css/demo.css">
<style>
*{
margin: 0;
padding: 0;
}
div{
width: 100px;
height: 100px;
}
#main{
border-top: 1px solid red;
border-right: 1px double blue;
border-bottom: 1px dashed black;
border-left: 1px dotted orange;
margin: 20px;
}
#circle{
border: 1px solid #ccc;
border-radius:50px;
}
button{
width: 100px;
height: 100px;
border: none;
}
#shadow{
box-shadow: 0px 4px 20px #ccc inset;
}
</style>
<title>08 html標(biāo)簽 表格</title>
</head>
<body>
<div id="main"></div>
<div id="circle"></div>
<button>登錄</button>
<div id="shadow"></div>
</body>
</html>
批改老師:滅絕師太批改時(shí)間:2019-01-12 15:48:44
老師總結(jié):測(cè)試的比較全面,看到你的代碼,應(yīng)該自學(xué)的很多知識(shí)點(diǎn),作業(yè)可以在完善一點(diǎn),比如帶點(diǎn)案例!