我可以在三角形div中放置一个字体真棒图标吗?

问题描述 投票:1回答:1

enter image description hereI使用边框画了一个三角形div,我不能流动图标所以它会在div里面吗?

div#sub-footer div {
  border-color: transparent transparent #2BD5B4 transparent;
  border-style: solid;
  border-width: 0px 30px 30px 30px;
  margin-bottom: -0.5px;
  display: inline-block;
  text-align: center;
}

div#sub-footer div a {
  float: left;
}

div#line {
  width:100%;
  border-bottom: 1px solid #394C5F;
  margin-bottom: 15px;
}
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"/>
<div>
  <a href="#"><i class="fa fa-arrow-up"></i></a>
</div>
html5 css3
1个回答
0
投票

你可以把任何东西放在一个div中,使它看起来像一个三角形。在这里,我从容器div中删除了边框,并将透明边框三角形技巧应用于该容器div(.triangle:before)上的伪元素。使用绝对居中居中图标,但您可以轻松使用flexbox或其他技术来实现居中布局。

.triangle {
  display: block;
  position: relative;
  height: 40px;
  width: 60px;
}
.triangle:before {
  content: '';
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 40px solid #2BD5B4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.triangle a {
  display: block;
  text-align: center;
  height: 20px;
  width: 20px;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"/>
<div class="triangle">
  <a href="#"><i class="fa fa-arrow-up"></i></a>
</div>
© www.soinside.com 2019 - 2024. All rights reserved.