Skip to content

Instantly share code, notes, and snippets.

Created November 11, 2013 19:17
Show Gist options
  • Save anonymous/7418712 to your computer and use it in GitHub Desktop.
Save anonymous/7418712 to your computer and use it in GitHub Desktop.
most flexible arrow
/**
* most flexible arrow
*/
.out {
width: 100px;
height: 200px;
position: relative;
overflow: hidden;
/*
background: gray;
*/
}
.out::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 141.42%; height: 70.71%;
transform: rotate(-45deg) translateY(29%);
border: 1px solid #333;
/*
background: red;
*/
}
<div class="out"></div>
// alert('Hello world!');
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment