ckovalsky741 / prj-rev-bwfs-dasmoto

0 stars 0 forks source link

Important #6

Open farishkash opened 6 years ago

farishkash commented 6 years ago

CSS repetition

Part of the goal of css is to reduce how many styles you have to type.

One example from your css is font-family: Helvetica;

You since the whole page is using this font family we can just put into the body tag and not have to repeat it anymore as this will be used through out due to inheritance.

body {
 font-family:Helvetica;
}
ckovalsky741 commented 6 years ago

Point taken. Thank you!