Created
February 21, 2012 16:16
-
-
Save MoOx/1877220 to your computer and use it in GitHub Desktop.
Untitled
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// http://cssdeck.com/item/175/pure-css3-smooth-ribbon-with-borders | |
//http://jsfiddle.net/Calou/juQ9n/ | |
.container | |
{ | |
position: relative; | |
margin: 100px; | |
height: 300px; | |
border: 1px solid green; | |
margin: 4em; | |
} | |
.left | |
{ | |
background: red; | |
position: absolute; | |
top: 4em; | |
left: 0; | |
text-align: center; | |
padding: 0 2em; | |
line-height: 2em; | |
box-sizing: border-box; | |
-webkit-transform: rotate(-45deg); | |
-webkit-transform-origin: 0 100%; | |
} | |
.right | |
{ | |
background: red; | |
position: absolute; | |
top: 8em; | |
left: 0; | |
text-align: center; | |
padding: 0 4em; | |
line-height: 2em; | |
box-sizing: border-box; | |
-webkit-transform: rotate(-45deg); | |
-webkit-transform-origin: 0 100%; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<div class="left">Ribbon</div> | |
<div class="right">Longer Ribbon</div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"view":"split","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment