CSS3多層邊框效果

antzone發表於2018-07-17

分享一段程式碼例項,它實現了多層邊框效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
.content {
  width: 200px;
  height: 200px;
  background: #46A546;
  margin: 0 auto;
  margin-top: 10%;
  border: 8px solid yellow;
  box-shadow: 0 0 0 10px red, 0 0 0 20px #D0E9C6, 0 0 0 30px blue;
}
</style>
</head>
<body>
  <div class="content"></div>
</body>
</html>

程式碼非常的簡單,更多內容可以參閱CSS3 box-shadow一章節。

相關文章