国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

學(xué)習(xí)CSS第三節(jié)課 ——邊框

Original 2019-04-01 10:14:30 178
abstract:<!DOCTYPE html><html><head> <meta charset="utf-8"> <title>學(xué)習(xí)CSS第三節(jié)課 ——邊框</title> <link rel="shortcut" type="image/x-icon" href=&quo

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<title>學(xué)習(xí)CSS第三節(jié)課 ——邊框</title>

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

<link rel="stylesheet" type="text/css" href="css/index.css">

<style type="text/css">

.box{width:100px; height: 100px; border: 1px solid #ccc;border-radius:50px;}

.main{width: 100px; height: 100px;border-top: 1px solid red;background:#ccc;border-left:1px solid red;}

.botton{border:none;}

.shadow{width:300px;height: 40px;box-shadow: 0px 6px 30px #ccc inset; /*border: 1px solid #ccc;*/}

</style>

</head>

<body>

<div class="box"></div><br>

<div class="main"></div>

<botton>登錄</botton>

<div class="shadow"></div>


</body>

</html>


Correcting teacher:西門大官人Correction time:2019-04-02 09:23:15
Teacher's summary:最好上傳一下運(yùn)行的效果圖。shadow的作用是什么?參數(shù)都是什么意義?

Release Notes

Popular Entries