CSS 頂部三角形矩形

antzone發表於2017-05-13

分享一段程式碼例項,它實現了頂部帶有三角形的矩形效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!DOCTYPE html>
<html>
<head> 
<meta charset=" utf-8">
<meta name="author" content="https://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
.fa {
  position: relative;
  width: 150px;
  height: 80px;
  border: 1px solid #333;
  margin: 40px;
  border-radius: 5px;
  text-align: center;
  line-height: 80px;
  background-color: #FFF5EE;
}
.fa2 {
  position: absolute;
  width: 0;
  height: 0;
  left: 30px;
  top: -32px;
  border-width: 16px;
  border-style: solid;
  border-color: transparent transparent #333 transparent;
}
.fa2>div {
  position: absolute;
  width: 0;
  height: 0;
  left: -15px;
  top: -14px;
  border-width: 15px;
  border-style: solid;
  border-color: transparent transparent #FFF5EE transparent;
  }
  </style>
</head>
<body>
  <div class="fa ">
    <div class="fa2">
      <div></div>
    </div>
    螞蟻部落
  </div>
</body>
</html>

非常簡單的帶有三角形的矩形效果,利用邊框的一些特點實現此效果。

相關文章