input box css
Forms are an essential part of interaction on the Internet but they can look rather drab.modify the inputbox in my new module of css: A simple input style property with css2: CSS: input .submit { color: #000; background: #ffa20f; border: 2px outset #d7b9c9 } .button { border: none; background: url('buttnbg.png') no-repeat top left; padding: 2px 8px; } .button:hover { border: none; background: url('buttnbg') no-repeat bottom left; padding: 2px 8px; } HTML: ‹ input type="submit" value="go!" class="submit" /› CSS3 button style: It's a simple button we can create with transparent PNG gradient background, border, border-radius, box-shadow, and text-shadow. .buttoncss3{ background: #222 url(buttonbg.png) repeat-x; display: inline-block; ...