Skip to content

Instantly share code, notes, and snippets.

@dwedwards
Created October 9, 2013 21:21
Show Gist options
  • Save dwedwards/6908618 to your computer and use it in GitHub Desktop.
Save dwedwards/6908618 to your computer and use it in GitHub Desktop.
A Pen by Dave Edwards.
<div class="box bmw">
<div class="ribbon">
<div class="txt">
CD Player </div>
</div>
<div>
.box {
width: 300px;
height: 300px;
}
.bmw{ background-image: url(http://www.eurodb.com.au/New-used-car-review/wp-content/uploads/2013/04/Official-Car-of-MottoGP-Safety-Car-BMW-M6-Gran-Coupe.-300x300.jpg);
}
.ribbon {
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
border: 25px solid transparent;
border-bottom: 25px solid blue;
position: absolute;
top:30px;
left:-37px;
padding: 0 10px;
width: 115px;
color: white;
font-family: sans-serif;
font-size: 18px;
font-weight:bold;
}
.ribbon .txt {
position: absolute;
top: 1px;
left: 30px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment