groups

name language licence
JaxsPro Single Button Mp3 Player (TopLeft) HTML Other
3 Column Footer HTML Other
2 Column Layout HTML - float style HTML Other
Loading 1 JavaScript Other
MiniMenu 2 HTML Other
Login HTML Other
imageMenu HTML HTML Other
2 Column Layout CSS - float style CSS Other

< 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 >



language: CSS
licence: Other

2 Column Layout CSS - float style

options: view full snippetsend to code collector
.column {
	float:left;
	width: 50%; /* this is what makes it 2 column */
	margin: 0;
	padding: 0;
}

.column * {
	width: 90%;
	margin: 0 auto;
}

.column img {
	width: auto; /* must be sized with inline styles */
}
	
(Continues...)