使用 css3 创建具有 css 箭头的框

Creating box having css arrow using css3

.box {
  position: relative;
  margin: 18px;
  width: 8em;
  height: 6em;
  border: 1px solid rgb(77, 77, 77);
  color: #FF1919;
  background-color: pink;
}
.box:hover {
  width: 8em;
  margin: 18px;
}
.box:before {
  content: '';
  position: relative;
  width: 30%;
  left: 18px;
  right: 80%;
  height: 40px;
  top: 30%;
  background: rgba(0, 0, 0, 0.1);
  display: inline-block;
  background-color: blue;
}
.box:after {
  content: '';
  position: absolute;
  left: 43%;
  top: 30%;
  margin-top: -18px;
  border-style: solid;
  border-width: 40px;
  border-color: transparent transparent transparent rgba(0, 0, 0, 0.1);
}
<div class="box"></div>

我创建了一个箭头,我想用灰色的蓝色突出显示箭头。

我还想使用这个总箭头作为按钮导航到扩展名为 html 的下一个场景页面。

为此,我正在使用:

<div style="position: absolute; right: 40px; bottom: 70px;">
    <form action="abc.html" align="right" style="margin-right:100px ;   display:inline">
        <input type="submit" class="box"></input>
    </form>
</div>

但它占用了 css 对象(矩形)框的一部分并留下其他部分。

也许你可以使用像这样的 HTML 特殊字符箭头符号 ➧ &#10151; 这样你就可以随心所欲地调整颜色、尺寸等

代码如下:

<div class="box">&#10151;</div> 这是单独的 div

这是一个输入。请注意,类型已更改为按钮

<div style="position: absolute; right: 40px; bottom: 70px;">
<form action="abc.html" align="right" style="margin-right:100px ;   display:inline">
    <input type="button" class="box" value="&#10151;"></input>
</form>

两者的CSS是

.box {
width:100px;
height:100px;
background-color:pink;
color:blue;
text-align:center;
font-size:100px;
line-height:100px;

}

你可以使用伪元素来简化。

.arrow {
  height: 50px;
  width: 50px;
  background: #0000ff;
  margin: 20px;
  position: relative;
}
.arrow:after {
  content: '';
  position: absolute;
  top: -15px;
  right: -80px;
  width: 0;
  height: 0;
  border-top: 40px solid transparent;
  border-left: 80px solid #0000ff;
  border-bottom: 40px solid transparent;
}
.box {
  width: 165px;
  padding: 20px;
  border: 1px solid #222;
  background: #eee;
}
<a href="abc.html">
  <div class="box">
    <div class="arrow"></div>
  </div>
</a>

你只需要改变 属性 代表头部的 :after 伪元素

 border-color: transparent transparent transparent rgba(0, 0, 255, 1);

.box {
  position: relative;
  margin: 18px;
  width: 8em;
  height: 6em;
  border: 1px solid rgb(77, 77, 77);
  color: #FF1919;
  background-color: pink;
  position: relative;
}
.box:before {
  content: '';
  position: absolute;
  width: 30%;
  left: 20%;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.1);
  background-color: blue;
}
.box:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 50%;
  /* before width 30% + before left position 20% */
  border-style: solid;
  border-width: 40px;
  border-color: transparent transparent transparent rgba(0, 0, 255, 1);
}
<div class="box"></div>

对于导航,您可以在 html 页面中添加 <a> 标签,对于 class .box:after 的颜色,请更改边框颜色,如下所示:

HTML:

<a href="http://www.w3schools.com" target="_blank"><div class="box"></div></a>

CSS:

 .box:after {
      content: '';
      position: absolute;
      left: 43%;
      top: 30%;
      margin-top: -18px;
      border-style: solid;
      border-width: 40px;
      border-color: transparent transparent transparent **rgba(7, 17, 241, 1);**    }

FIDDLE