I need your help with the textarea of my form fields. I have the CSS below to apply a general style for the texarea. But now i’ll like to make some inline changes to some particular textarea because they are overlapping beyond the container.
Thanks for the help.
textarea[type=text]{
border: 2px solid #a9c6c9;
vertical-align: middle;
padding: 9px;
height: 129px;
border-collapse: collapse;
margin: 2px;
padding: 2px;
space: 2px;
width: 6.1in;
z-index: 1;
font-family: calibri;
}
Try just adding a class to the individual textarea
then:
or you can have it inside a div like so:
or add this to your textarea in you html:
Hope this helps