Monday, May 20, 2013

Creating the button styles with CSS

Use the following code as given below :
input[type="button"], input[type="submit"] {
            color:##fff;
            background-color:rgb(140, 13, 13);
            border:1px solid ;
            font-size:14px;
            border-color: rgb(140, 13, 13);
            padding:2px 10px 2px 10px ;
            -moz-border-radius: 3px;
            -webkit-border-radius: 3px;
            -khtml-border-radius: 3px;
            border-radius: 3px;
        }

Please view the code in http://jsfiddle.net/zYWSY/

Share this

0 Comment to "Creating the button styles with CSS "

Post a Comment