Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS why to write this below line in css and what is meaning of these line Re: why to write this below line in css and what is meaning of these line

#122539
Andy Howells
Participant

Note that you don’t have to use the shorthand, I actually prefer doing it long hand, for example;


.box {
font-family: xxx;
font-size: xxx;
font-weight: xxx;
}

It’s perfectly valid this way and I find it easier to read and change.