-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (60 loc) · 2.03 KB
/
index.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>CSS Layouts</title>
<style>
*{padding: 0;margin: 0;}
body{
font-size: 0.8em;
font-family: Verdana, Geneva, sans-serif;
}
h1,h2{
color:#444;
text-shadow: 0 1px 0px #fff;
}
.box{
margin:20px auto 0 auto;
height: 50%;
width: 50%;
background: #f1f1f1;
border: solid 1px #f1f1f1;
border-radius: 5px;
padding: 15px;
box-shadow: 0 3px 5px #999;
}
</style>
</head>
<body>
<div class="box">
<h2>CSS Tricks & <a href="http://cssdeck.com/labs/homer-simpson-rendered-in-css3">Homer Simpson</a></h2>
</div>
<div class="box">
<h2>#1 <a href="fixed-layout.html">Fixed Layout</a></h2>
<h2>#1 <a href="fixed-layout.html">Fixed Layout med 3 kolonner</a></h2>
<h2>#2 <a href="fluid-layout.html">Fluid Layout</a></h2>
<h2>#2 <a href="fluid-layout2.html">Fluid Layout med 3 kolonner</a></h2>
<h2>#3 <a href="hybrid-layout.html">Hybrid Layout</a></h2>
<h2>#3 <a href="hybrid-layout2.html">Hybrid Layout med 3 kollonner</a></h2>
<h2>#4 <a href="flexbox-layout.html">Flexbox Layout</a></h2>
</div>
<div class="box">
<h1>Vælg en eller flere</h1>
<h2>Let og simpelt: </h2>
<a href="http://www.w3schools.com/cssref/css3_pr_columns.asp">CSS Collums</a>
<h2>Et mellem avanceret trick: </h2>
<a href="http://css-tricks.com/snippets/css/a-guide-to-flexbox/">Flexbox</a>
<h2>Stort og avanceret : </h2>
<a href="http://getbootstrap.com">Bootstrap</a> eller <a href="http://foundation.zurb.com">Foundation</a>
<h2>Når du er klar til det hele </h2>
<a href="http://www.initializr.com">Initializr</a>
</div>
<div class="box">
<h2><a href="http://caniuse.com">Can I Use ????</a> (Browser kompatibilitet)</h2>
<h2><a href="http://slides.html5rocks.com/#css-selectors">Slideshow om HTML5 & CSS3</a></h2>
<h2><a href="http://learnlayout.com/inline-block.html">Om CSS Display</a></h2>
<h2><a href="http://learnlayout.com/position.html">Om CSS Positions</a></h2>
</div>
</body>
</html>