CSS边框样式

Original 2019-03-06 17:52:02 177
abstract:<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0">&

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<meta http-equiv="X-UA-Compatible" content="ie=edge">

<title>CSS边框</title>

<style>

.box{width: 150px;height: 150px;background: violet; border: 2px dashed #ccc;border-radius: 75px}

.main{width: 150px;height: 150px;border-right: 1px dotted red;border-bottom: 1px double black;border-top: 1px solid red;background: #fff;border-left: 1px solid pink;}

button{border: 1px double burlywood;margin-top:10px }

.shadow{width:300px;height: 50px;box-shadow: 1px 5px 40px yellowgreen inset;margin-top: 10px;}


</style>




</head>

<body>

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

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

<button>登录</button>

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

</body>

</html>


Correcting teacher:灭绝师太Correction time:2019-03-07 09:08:52
Teacher's summary:代码提交注意格式哦!完成的不错,继续加油!

Release Notes

Popular Entries