groups

name language licence
Border Radius - Off CSS Other
Border Radius - Top Right CSS Other
2 Column Layout CSS - float style CSS Other
Border Radius - All CSS Other
FireFox Only CSS Hacks CSS Other
seyDoggy Grid - CSS CSS Other
Border Radius - Bottom CSS Other
disqus fix CSS Other

< 1 2 3 >



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...)