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!
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Text area radius
-
- nuBuilder Team
- Posts: 4568
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 76 times
- Been thanked: 532 times
- Contact:
Re: Text area radius
Did you add it between the style tags?
Code: Select all
<style>
textarea {
border-radius: 10px;
}
</style>