Asked 7 years ago
14 Dec 2016
Views 913
css-learner

css-learner posted

how to make button with round border ?

how to apply rounded border at corner at button ?


<input type="submit" name="save" value="save" class='button' />



.button{
background-color:red;
border:1px solid;
}


Mitul Dabhi

Mitul Dabhi
answered Nov 30 '-1 00:00

border-radius is css-property which give radius to html element


.rounded-button{
border-radius:12px; 
}


https://jsfiddle.net/ectoc8yy/
Post Answer