2
Hi, my question is kind of strange, I always put in css two ids for when I put a margin, the first with margin 20px and the second with margin 10px, I wanted to know if there is any way to do this automatically, follow example because this explanatory text this bad!!!
Example:
HTML:
<div id="contato-texto">Nome:</div>
<div id="contato-texto2">Nome:</div>
<div id="contato-texto2">Nome:</div>
<div id="contato-texto2">Nome:</div>
CSS:
#contato-texto {
margin-top: 20px;
margin-left: 20px;
font-family: OratorStd;
color: #e4d88a;
font-size: 14px;
text-align: left;
}
#contato-texto2 {
margin-top: 5px;
margin-left: 20px;
font-family: OratorStd;
color: #e4d88a;
font-size: 14px;
text-align: left;
}