I'm using multiple properties in one.
For example, instead of using font-family
, font-size
, I'm only using font
, as below:
.topoMenu li{
font: 20px 'Ubuntu', sans-serif, #000, 300;
}
The last one is font-weigth
, but when I inform it, it gives a problem, it does not format the font correctly, if I do it works fine.
Is it a problem with the syntax?