outline兩層邊框程式碼例項

antzone發表於2017-04-04

使用outline屬性可以實現多層邊框效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
.box {
  width: 200px;
  height: 200px;
  float: left;
  padding: 10px;
  margin: 10px 20px;
  color: #333;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}
.outline {
  background: #ccc;
  border: 10px solid #655;
  outline: 5px dashed deeppink;
  outline-offset: 10px;
}
</style>
</head>
<body>
  <div class="box outline">outline兩層邊框</div>
</body>
</html>

上面的程式碼實現了多層邊框效果。

相關文章