Files
cheatsheets/html-css.md
Rico Sta. Cruz 85c46a3923 Jekyllization.
2013-10-14 10:36:58 +08:00

421 B

title, layout
title layout
HTML/CSS default

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;