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

css樣式學(xué)習(xí)作業(yè)

Original 2019-06-15 23:56:06 321
abstract:<!DOCTYPE html><html><head> <meta charset="utf-8"> <title>html課程學(xué)習(xí)-css-邊框-border</title> <link rel="shortcut icon" type="image/X-icon&qu

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<title>html課程學(xué)習(xí)-css-邊框-border</title>

<link rel="shortcut icon" type="image/X-icon" href="image/logo2.png">

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

<style type="text/css">

.box{width: 500px;height: 300px;border: 1px solid #ccc;border-radius: 10px;border-bottom: }

.main{width: 200px;height: 200px;border-top: 10px solid red;background: blue;}

        .shadow{width: 300px;height: 400px;box-shadow:  0px 5px 3px #ccc inset; border: 1px solid red;}



</style>

</head>

<body>

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

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

<button>登錄</button>

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


</body>

</html>


Correcting teacher:天蓬老師Correction time:2019-06-16 09:32:02
Teacher's summary:你的邊框有點(diǎn)美化過(guò)度了, 學(xué)習(xí)可以, 實(shí)際工作中, 不必這樣的

Release Notes

Popular Entries