Page 1 of 1

Text area radius

Posted: Sat Feb 22, 2020 6:13 am
by Janusz
How to implement radius for all text areas.
for a specific one I can use: $('#.....').css('border-radius','10px');
Was trying for example with: .input[type=textarea] {border-radius: 10px;}
in header but did not succeed.

Re: Text area radius

Posted: Sat Feb 22, 2020 6:43 am
by kev1n
Did you add it between the style tags?

Code: Select all

<style>
textarea {
  border-radius: 10px;
}
</style>

Re: Text area radius

Posted: Sat Feb 22, 2020 6:54 am
by Janusz
Thanks a lot :-)

Re: Text area radius

Posted: Sat Feb 22, 2020 10:36 pm
by admin
.