#element {
	border: 5px red solid;
  height: 200px;
  width: 200px;
  overflow: auto;
  /*
  	Other accepted values:
  	visible - default value; shows overflowing content
  	hidden - hides overflowing content
  	scroll - adds a horizontal and vertical scrollbar to view content
  	auto - hides content, adds vertical scrollbar
		
  	overflow is a combination of overflow-x and overflow-y 
  */
}