groups

name language licence
4 Column Layout CSS - float style CSS Other
ExtraContent - Start HTML Other
ExtraContent Sample - 3 columns HTML Other
ExtraContent Sample - four5ths right HTML Other
ExtraContent Sample - Welcome to Creamux HTML Other
ExtraContent Sample - Welcome to Bubblegum HTML Other
extracontent.js JavaScript Other
ExtraContent Sample - Movie Album HTML 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

4 Column Layout CSS - float style

options: view full snippetsend to code collector
.column {
	width: 25%;
	float: left;
}

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

.column img {
	width: auto; /* to size an image in .column you'll have to use inline styles*/
}
	
(Continues...)