Skip to content

Instantly share code, notes, and snippets.

@aspirisen
Created February 2, 2015 11:09
Show Gist options
  • Save aspirisen/6b08a2ba651ec91f4c00 to your computer and use it in GitHub Desktop.
Save aspirisen/6b08a2ba651ec91f4c00 to your computer and use it in GitHub Desktop.
Arrow
/**
* Arrow
*/
body{
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
}
div{
width: 200px;
top:200px;
}
.arrow_box {
position: relative;
background: #88b7d5;
}
.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-left-color: #88b7d5;
border-width: 30px;
margin-top: -30px;
}
<div class="arrow_box"></div>
// alert('Hello world!');
{"view":"separate","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment