* 
  
  /* Create three equal columns that floats next to each other */
  .columnnew {
	float: left;
	width: 30.33%;
	padding: 30px;
	height: 300px; /* Should be removed. Only for demonstration */
	margin-right:5px;
  }
  
  /* Clear floats after the columns */
  .row:after {
	content: "";
	display: table;
	clear: both;
  }