Skip to main content

Posts

Showing posts with the label Button

Button Creating with CSS

Button Creating with CSS Styles for Button Creating button with Css: .buttonsave,.buttoncancel{ padding: 3px 5px 5px 20px; background: #663300 url(../IMG/save.png) no-repeat scroll 5px center; color:#D59200; font-weight:bold; height:30px; line-height:2px; margin-bottom:14px; text-decoration:none; width:85px; font-family:Verdana; font-size:13px; -webkit-border-radius: 16px; -moz-border-radius: 10px; } .buttonsave{ background: #663300 url(../IMG/save.png) no-repeat scroll 5px center; } .buttoncancel{ background: #663300 url(../IMG/cancel.png) no-repeat scroll 5px center; } .buttonsave:hover,.buttoncancel:hover { color:#fff; } .buttonsave:active,.buttoncancel:active { color:#fff; } .buttonsave:focus,.buttoncancel:focus { color:#fff; }