Css: div 100% in altezza

Ecco un modo per avere un div che si estende per il 100% in altezza:

<html>
	<head>
		<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
		<style type="text/css">
			html,body {
				height:100%;
				margin:0;
			}
 
			div.toptobottom {
				height: auto;
				min-height: 100%;
 
				margin-left: auto;
				margin-right: auto;
				width: 350px;
				background-color: #c080ff;
				color: white;
				text-align: center;
			}
 
		</style>
	</head>
 
	<body>
		<div class="toptobottom">
			Questo &egrave; il div che si estende per il 100% in altezza
		</div>
	</body>
 
</html>

Vedi l’esempio toptobottom.html.

Font, font, font

Alcuni link dove è possibile trovare font gratuiti:

QuirkMode – for all your browser quirk

quirksmodeSegnalo questo  interessante sito www.quirksmode.org che può interessare a chi sviluppa sul web.

Vegono affrontati il livelli di compatibilità dei prinipali browser, DOM, CSS, JavaScript e molto altro.

Continue reading “QuirkMode – for all your browser quirk”