An html element using CSS only styling to create a starburst - for special offers (for example).
<div class="starburst">
<div class="text"> <span class="label">Get something</span> <span class="number">FREE</span> <span class="terms">some terms</span> </div>
</div>
The dimensions used in the CSS are all ems, making it easy to change the overall size of the element and the text inside by changing your base font size (on the body tag for example). This makes it easy to change the size of the element for desktop, mobile etc.
CSS only
No background images required.
HTML/CSS by: Lyndel Thomas @ryndel
Based on the starburst example by Chris Coyier