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
January 28, 2013 at 5:35 am
#122539
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.