如何使用右箭头在div周围添加白色边框?

时间:2016-11-21 10:30:09

标签: html css border css-shapes pseudo-element

我在页面上有一个简单的div:

<div>Some Text</div>

使用CSS是否可以做出类似这样的事情:

Div with white border

5 个答案:

答案 0 :(得分:3)

您可以使用此代码制作类似的箭头

<div class="arrow_box">Arrow</div>

.arrow_box {
	position: relative;
	background: #20d568;
	border: 10px solid #ffffff;
}
.arrow_box:after, .arrow_box:before {
	left: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.arrow_box:after {
	border-color: rgba(32, 213, 104, 0);
	border-left-color: #20d568;
	border-width: 70px;
	margin-top: -70px;
}
.arrow_box:before {
	border-color: rgba(255, 255, 255, 0);
	border-left-color: #ffffff;
	border-width: 84px;
	margin-top: -84px;
}

甚至还有一个website来生成类似上面提到的代码片段。 希望这有帮助!

答案 1 :(得分:3)

以下是在您自己的项目中创建此效果所需的CSS和HTML标记。

&#13;
&#13;
<!DOCTYPE html>
<html>
<head>
	<meta>
	<title>title</title>
	<link>
	
	<style type="text/css">
		
		#base {
			border: 3px solid #ccc;
			background: red;
			display: inline-block;
			height: 30px;
			position: relative;
			width: 50px;
			padding: 10px 0px 0px 10px;

		}
		#base:before {
			border-bottom: 22px solid transparent;
			border-left: 19px solid #ccc;
			border-top: 22px solid transparent;
			content: "";
			height: 0;
			right: -22px;
			position: absolute;
			top: -2px;
			width: 0;
			
		}
		#base:after {
			border-bottom: 20px solid transparent;
			border-left: 17px solid red;
			border-top: 20px solid transparent;
			content: "";
			height: 0;
			right: -17px;
			position: absolute;
			top: 0px;
			width: 0;
			
		}
	</style>
</head>
<body>
	  <div id="base" > 
		NEXT
	  </div>
</body>
</html>
&#13;
&#13;
&#13;

答案 2 :(得分:1)

HTML

<div class="textBox">
   Text
</div>

CSS

body{
  background:#000;
}
.textBox{
  padding:10px;
  background-color:green;
  border-top:5px solid #fff;
 border-bottom:5px solid #fff;
  border-left:5px solid #fff;
  width:50px;
  color:#fff;
  position: relative;
}
 .textBox::after{
   content: '';
    position: absolute;
    width: 30px;
    height: 29px;
    background: green;
    border-top: 5px solid #fff;
    border-right: 5px solid #fff;
    transform: rotate(45deg);
    top: 2px;
    right: -18px;
    z-index: -1
  }

Codepen:http://codepen.io/swapnaranjitanayak/pen/mOWrzX

答案 3 :(得分:1)

当然可以使用几个伪元素。例如:

<div class="arrowBox">Some Text</div>

然后使用以下CSS(注意,我使用了红色边框而不是白色,所以我可以看到它):

.arrowBox{
    width: 100px;
    height: 50px;
    background: green; 
    border: 5px red solid;
    display: block;
    position: relative;
    line-height:  50px;
    color:  #fff;
    text-align: center;
}

.arrowBox:before{
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    right: -34px;
    top: -5px;
    border-top: 30px solid transparent;
    border-bottom:30px solid transparent;
    border-left: 30px solid red; 
    z-index: -1;
}

.arrowBox:after{
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    right: -25px;
    top: 0;
    border-top: 25px solid transparent;
    border-bottom:25px solid transparent;
    border-left: 25px solid green; 
}

答案 4 :(得分:1)

你可以开始使用的东西:

&#13;
&#13;
*{
  box-sizing:border-box;
}
.wrapper{
  border: 1px solid #ddd;
  display:inline-block;
  position:relative;
}
div.arrow {
  height: 50px;
  line-height: 50px;
  width: 75px;
  background: green;
  position: relative;
  text-align:center;
  border: 1px solid #ddd;
  margin: 10px;
  color:white;
  font-weight:bolder;
}
div.arrow:before {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(100%, 0);
  height: 0;
  width: 0;
  border-left: 25px solid green;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  z-index:2;
}
div.arrow:after {
  content: '';
  display: block;
  position: absolute;
  right: -11px;
  top: 50%;
  transform: translate(100%, -50%);
  height: 0;
  width: 0;
  border-left: 35px solid white;
  border-top: 35px solid transparent;
  border-bottom: 35px solid transparent;
  z-index:1;
}
.wrapper:after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(100%, -50%);
  height: 0;
  width: 0;
  border-left: 36px solid #ddd;
  border-top: 36px solid transparent;
  border-bottom: 36px solid transparent;
}
&#13;
<div class="wrapper">
  <div class="arrow">Text</div>
</div>
&#13;
&#13;
&#13;

相关问题