/*
Allison Obourn
CSc 337, Fall 2018
Lecture 9

Style sheet for colored rectangles example
*/

#rectanglearea {
	width: 600px;
	height: 500px;
	border: 2px solid black;
	position: relative;
}

#rectanglearea .rectangle {
	position: absolute;
}

.rectangle {
	border:  black 1px solid;
	width: 50px;
	height: 50px;
}