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

CSS知識(shí)集

Original 2019-01-12 01:48:38 368
abstract:<!DOCTYPE html><html><head> <title>CSS 知識(shí)集</title> <style type="text/css"> body{background-image: url(http://img.php.cn/upload/article/000/000/003/5bf36b5
<!DOCTYPE html>
<html>
<head>
<title>CSS 知識(shí)集</title>
<style type="text/css">
body{background-image: url(http://img.php.cn/upload/article/000/000/003/5bf36b533beff297.png);background-repeat: no-repeat;background-position: center top;}
.bkys1{width: 300px;height:300px; border: 1px solid #ccc;}
.bkys2{width: 300px;height:300px; border: 1px double #ccc;}
.bkys3{width: 300px;height:300px; border: 1px dashed #ccc;}
.bkys4{width: 300px;height:300px; border: 1px dotted #ccc;}
.dbkys1{background:red;width: 300px;height: 300px;border-top: 10px solid #ccc}
.dbkys2{width: 300px;height: 300px;border-right: 10px solid #ccc;background:red;}
.dbkys3{width: 300px;height: 300px;border-left: 10px solid #ccc;background:red;}
.dbkys4{width: 300px;height: 300px;border-bottom: 10px solid #ccc;background:red;}
button{border:none;border-radius: 10px;}
.shadow{width:300px;height: 50px;box-shadow:0px 6px 30px #ccc inset ;}
.koutu{width: 50px;height:50px;background-image: url(http://img.php.cn/upload/article/000/000/003/5bf36b533beff297.png);background-repeat: no-repeat;background-position:-100px 0px;}


</style>
</head>
<body>
<h1>邊框類</h1>
<div class="bkys1"></div>
<div class="bkys2"></div>
<div class="bkys3"></div>
<div class="bkys4"></div>
<div class="dbkys1"></div>
<div class="dbkys2"></div>
<div class="dbkys3"></div>
<div class="dbkys4"></div>
<button>登錄</button>
<div class="shadow"></div>
<div class="koutu"></div>

</body>
</html>>


Correcting teacher:查無(wú)此人Correction time:2019-01-12 09:13:10
Teacher's summary:完成的不錯(cuò)。 可以把width: 300px;height: 300px;樣式單獨(dú)提出來(lái)。 比如 w300{ width: 300px; } , h300{ height: 300px; }, 這樣可以減少代碼量。

Release Notes

Popular Entries