JSFiddle - React, Tailwind, and code Playground

by Khalil Zhang

HTML

<!-- do not change the markup -->
<a href="#">
</a>

CSS

/*
    
    INSTRUCTIONS

    Using CSS properties alone, recreate this button: 

        http://i.imgur.com/gnZnY.png. 

    Spend no longer than 15 minutes on it, we don't 
    expect it to be a perfect match. It's open book, 
    feel free to hit Google but be prepared to 
    explain your solution.

*/
a {
    background-image:url(http://i.imgur.com/gnZnY.png);
    width:311px;
    height:126px;
    display:inline-block;
}