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

html5邊框的樣式設置

Original 2019-04-29 14:14:28 365
abstract:<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>邊框</title> <style> .box{ width: 100px; height: 100px; border: 1px dashed;

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>邊框</title>

<style>

.box{

width: 100px;

height: 100px;

border: 1px dashed;

border-radius: 50px;

}

.main{

width: 100px;

height: 100px;

border-top: 1px solid red;

background-color: #ccc;

border-left: 1px solid blue;

}

button{

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>

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

<button>登錄</button>

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

</body>

</html>


Correcting teacher:查無此人Correction time:2019-04-30 09:03:59
Teacher's summary:完成的不錯,可以把常用的css樣式寫成公用文件。繼續(xù)加油。

Release Notes

Popular Entries