Files
cheatsheets/html-css.md
Rico Sta. Cruz 85cc0fe827 Hello.
2012-03-16 14:15:50 +08:00

380 B

CSS - Selectors

.class {
}

CSS - Font styling

font-family: Arial;
font-size: 12pt;
line-height: 150%;
color: #aa3322;

CSS - Font styling

// Bold
font-weight: bold;
font-weight: normal;

// Italic
font-style: italic;
font-style: normal;

// Underline
text-decoration: underline;
text-decoration: none;