I am currently working with the following CSS:
input[type="text"]
{
border: 2px solid rgb(173, 204, 204);
height: 31px;
box-shadow: 0px 0px 27px rgb(204, 204, 204) inset;
transition:500ms all ease;
padding:3px 3px 3px 3px;
}
My goal is to apply these same properties to a textarea element, except I do not want to specify a height for it.
Is there a way to inherit the CSS styles and remove a specific property without having to rewrite the entire block?