Hi, my question is a bit strange, I always put two ids in the css for when I put a margin, the first with margin 20px and the second with margin 10px, he wanted to know if there is any way to do this automatically, explanatory text sucks !!!
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;
}