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.
Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
Text area radius
-
- nuBuilder Team
- Posts: 4416
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 74 times
- Been thanked: 472 times
- Contact:
Re: Text area radius
Did you add it between the style tags?
Code: Select all
<style>
textarea {
border-radius: 10px;
}
</style>