Edgewall Software

Ticket #8866: test.html

File test.html, 609 bytes (added by Carsten Klein <carsten.klein@…>, 16 years ago)

sample html and css for the new layout

Line 
1<html>
2
3<head>
4
5<style type="text/css">
6
7.left
8{
9 float: left;
10}
11
12.right
13{
14 float: right;
15}
16
17.panel
18{
19 background: yellow;
20 border: 1px solid black;
21 width: 100px;
22 height: 100px;
23}
24
25.admin-panel
26{
27 background: red;
28 border: 1px solid black;
29 width: 200px;
30 height: 400px;
31}
32
33.tab-content
34{
35 background: blue;
36 border: 1px solid black;
37 width: 200px;
38 width: 200px;
39 height: 600px;
40}
41
42</style>
43
44</head>
45
46<body>
47
48<div id="content" class="admin">
49
50<div class="admin-panel left">
51</div>
52
53<div class="panel right">
54</div>
55
56<div class="panel right">
57</div>
58
59<div class="tab-content left">
60</div>
61
62
63</div>
64
65</body>