css - Can I style an input button to be just a rectangle with a border? -
i style input buttons take away normal styling , make them rectangles rounded edges. i'm new css. can tell me if it's possible this.
john
yea, sure.
input[type=submit], input[type=button], button { border: 1px solid #000; background: #f00; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; }
there go.
example more bells , whistles:
and yea, jeroen noted, fancier effects supported in modern browsers.
Comments
Post a Comment