css三角形箭頭程式碼例項

螞蟻小編發表於2017-04-09

本章節分享一段程式碼例項,它實現了三角形箭頭效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
html, body {
  padding: 0px;
  margin: 0px;
}
div {
  margin: 0px auto;
}
.one {
  width: 0px;
  height: 0px;
  border-top: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 30px solid red;
  border-left: 30px solid transparent;
}
.true {
  margin-top: -60px;
  width: 0px;
  height: 0px;
  border-top: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 50px solid red;
  border-left: 50px solid transparent;
}
.three {
  width: 30px;
  height: 60px;
  background: red;
}
</style>
</head>
<body>
  <div class="zong">
    <div class="one"></div>
    <div class="true"></div>
    <div class="three"></div>
  </div>
</body>
</html>

上面的程式碼實現了三角形箭頭效果,實現的原理就是設定邊框的透明。

相關文章