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

HTML中border屬性設(shè)置(CSS邊框樣式)20190715

Original 2019-07-15 16:03:55 531
abstract:<!DOCTYPE html><html><head><meta charset="UTF-8"><title>CSS邊框樣式</title><!-- <link rel="shortcut icon" type="image/x-icon" href=&

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>CSS邊框樣式</title>

<!-- <link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico"> -->

<style type="text/css">

.box{width:100px;height:100px;border:1px solid #ccc;margin-bottom:20px;}

.box1{width:100px;height:100px;border:1px double lightcoral;margin:20px 0px;border-radius:20px;}

.box2{width:100px;height:100px;border:1px dashed lightblue;margin:20px 0px;border-radius:50px;}

.box3{width:100px;height:100px;border:1px dotted lightgreen;margin:10px 0px;box-shadow:10px 5px 3px #cfcfcf;}

.box4{width:100px;height:100px;margin:10px 0px;margin:20px 0px;box-shadow:0px 6px 40px #cfcfcf inset;}

button{border:none;}

</style>

</head>

<body>

<div></div>

<div></div>

<div></div>

<div></div>

<div></div>

<button>登錄</button>


</body>

</html>


Correcting teacher:查無此人Correction time:2019-07-16 13:14:32
Teacher's summary:完成的不錯,常用的css樣式可以寫到公用文件里,每個項(xiàng)目都可以加載這一個公用文件。繼續(xù)加油。

Release Notes

Popular Entries