abstract:<html><head> <meta charset="UTF-8"> <title>CSS中的邊框</title> <link rel="stylesheet" href=""> <style type="text/CSS"> .b
<html>
<head>
<meta charset="UTF-8">
<title>CSS中的邊框</title>
<link rel="stylesheet" href="">
<style type="text/CSS">
.box{
width: 100px;
height: 100px;
border: 1px solid #ccc;
background: green;
}
.main{
width: 100px;
height: 100px;
margin: 10px;
border-top: 1px solid red;
border-left: 2px dotted blue;
border-right: 1px solid red;
border-bottom: 2px dotted blue;
}
.box1{
width: 100px;
height: 100px;
border: 1px solid #ccc;
background: gray;
border-radius: 15px;
}
.box2{
width: 100px;
height: 100px;
border: 1px solid #ccc;
background: green;
box-shadow: 10px 20px 5px #ccc;
}
button{
border: none;
}
</style>
</head>
<body>
<div class="box"></div>
<div class="main"></div>
<div class="box1"></div><br>
<button>用戶登錄</button><br><br>
<div class="box2"></div>
</body>
</html>
Correcting teacher:西門大官人Correction time:2019-02-24 13:56:24
Teacher's summary:作業(yè)完成的不錯(cuò),最好上傳一下運(yùn)行的效果圖