Hi I'm trying to make a very simple x delete button i can use throughout this site i am building however, I can't ever seem to get it properly positioned...
This is it so far:
<button id="clear-input-location" name="clear-input-location">×</button>
#clear-input-location {
    display:block;
    background: #CCC;
    color: #FFF;
    border: none;
    font-weight: bold;
    font-size: 20px;
    border-radius: 20px;
    line-height: 0;
    height: 26px;
}
see the fiddle here: http://jsfiddle.net/kpheR/
 
     
     
    