Thursday 18 July 2013

(Q) How to create rounded input box without using java-script and images. ?

-
<style type="text/css">
input
{
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #CCCCCC;
    height:28px;
    width:250px;
}
</style>

<body>
 <input type="text" value="test" />

</body>

No comments:

Post a Comment