+ 1
How can i make the edge of my text field curve.
border radius
2 Réponses
+ 5
Try this:
<style>
input[type="text"] {
border: 1px solid #aaa;
border-radius: 5px;
}
</style>
<input type="text" />
https://code.sololearn.com/WV4u6oT2vik1/?ref=app
+ 1
Yes.