亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

CSS中的邊框

Original 2019-02-24 12:01:31 245
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)行的效果圖

Release Notes

Popular Entries