This repository has been archived by the owner on Mar 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcentrare_elementi_no_altezza_larghezza.html
53 lines (45 loc) · 1.92 KB
/
centrare_elementi_no_altezza_larghezza.html
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Centrare elementi sprovvisti di larghezza e altezza :: Laboratorio CSS</title>
<link href='http://fonts.googleapis.com/css?family=Maven+Pro:400,700' rel='stylesheet' type='text/css' />
<link href="common/css/style.css" rel="stylesheet" type="text/css" />
<style type="text/css">
*{margin:0;padding:0}
h2{font-weight:bold;}
.wp{margin-bottom:20px; height:200px}
.content{background:#efefef;}
#wrapper_1{display:table; width:100%;}
#wrapper_1 .content{display:table-cell; text-align:center; vertical-align:middle;}
#wrapper_2:before{content:''; display:inline-block; height:100%; vertical-align:middle;}
#wrapper_2{text-align:center; background:#e8747b;}
#wrapper_2 .content{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding:20px;}
</style>
</head>
<body>
<a id="logo" href="http://www.laboratoriocss.it" title="Laboratorio CSS" class="logo"><img src="common/img/structure/logoLabcss.png" alt="Logo laboratorio CSS" /></a>
<div id="container">
<div id="header">
<h1>Centrare elementi sprovvisti di larghezza e altezza</h1>
<p id="description">Ma cosa succede se non si hanno queste informazioni? è ancora possibile centrarli in modo verticale e orizzontale? </p>
</div>
<div id="content">
<!-- ESEMPIO -->
<div id="wrapper_1" class="wp">
<div class="content">
<h2>METODO DISPLAY TABLE</h2>
<p>Lorem Ipsum è un testo segnaposto utilizzato nel settore della tipografia e della stampa. Lorem Ipsum è considerato il testo segnaposto standard sin dal sedicesimo secolo, quando un anonimo tipografo prese una cassetta di caratteri.</p>
</div>
</div>
<div id="wrapper_2" class="wp">
<div class="content">
<h2>METODO CONTENUTO GENERATO</h2>
<p>Lorem Ipsum è un testo segnaposto utilizzato nel settore</p>
</div>
</div>
<!-- //ESEMPIO -->
</div>
</div>
</body>
</html>