Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

should simply become 

Code Block
.bold {
}

Changes from previous version

The "margin" css property should be changed with the "padding" property.

Code Block
label {
	margin: 1px 2px 3px 4px; 
}

should become

Code Block
.label {
	padding: 1px 2px 3px 4px; 
}