I am trying to put a border around it, but i can’t. Here is what i have as far as CSS:
body{ margin:1em; }
body *{ font-family: RussellSquare}
body{background-color: #363636;}
input[type=number]{
font-size:1em;
width:2.5em;
padding:3px;
margin:0;
border-radius:3px;
border: 1px solid #000;
text-align:center;
}
input[type=number]:focus{
outline:none;
}
It works just fine. Try it yourself on different browsers here.
Short explanation would be:
borderis CSS property that is supported on all major browsers.border-radiusis CSS3 property that runs on all modern browsers. IE 6/7/8 is not one of them.In case you want to know more about Internet Explorer support of
border-radiusRead: Support for "border-radius" in IE