I have a following class:
.rodape input{
blablabla
}
And the following HTML
<div class="rodape">
<input type="text" />
<input type="text" />
<input type="submit" />
</div>
What happens, all the inputs inside this div will receive the definitions I gave in rodape
. Perfect, but I wanted to stylize the input that has type="submit"
also, but in a different way from the others.
I do not want to create a class just for it, I would like to know if there is a way to do it, reporting by CSS.