摘要:<!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>
.d{
width: 150px;
height: 150px;
border:1px solid #00F;
}
.s{
width: 150px;
height: 150px;
border:1px solid #00F;
border-radius: 50%;
}
.p{
width: 100px;
height: 100px;
border:1px dashed #000;
border-radius: 50%;
}
</style>
</head>
<body>
<div class="d">
<div class="s">
<div class="p">
</div>
</div>
</div>
</body>
</html>
批改老師:天蓬老師批改時間:2019-06-03 09:41:38
老師總結:邊框的樣式, 其實還有很多的, 并且配合窗口陰影, 可以實現許多有趣的東西