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

CSS樣式:css邊框

Original 2019-05-23 21:53:14 254
abstract:<!DOCTYPE html><html><head><meta charset="utf-8"><title>CSS樣式</title><link rel="shortcut icon"type="image/x-icon"href="images/

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<title>CSS樣式</title>

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

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

<style type="text/css">

.box{width:100px;height:100px;border:1px solid /*double dashed dotted*/#ccc;border-radius:10px}

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

button{border:none;}

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

</style>

</head>

<body>

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

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

<button>登錄</button>

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

</body>

</html>


Correcting teacher:天蓬老師Correction time:2019-05-24 13:41:35
Teacher's summary:以后建議養(yǎng)成好的習(xí)慣, css,一個(gè)樣式寫一行, 便于閱讀 和添加注釋

Release Notes

Popular Entries