File: test5.htm

package info (click to toggle)
litehtml 0.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,928 kB
  • sloc: ansic: 31,385; cpp: 27,328; makefile: 9
file content (31 lines) | stat: -rw-r--r-- 547 bytes parent folder | download | duplicates (5)
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
<style type="text/css">
.container
{
    background-color: lightblue;
    /*border: 5px solid darkred;*/
    margin: 40px;
}
.rel_box
{
    background-color: lightcoral;
    border: 5px solid darkblue;
    height: 50px;
    position: relative;
    left: 50px;
    top: 10px;
    margin: 30px;
}
.flow_box
{
    background-color: lightcoral;
    border: 5px solid darkblue;
    height: 50px;
    margin: 30px;
}
</style>
<body>
    <div class="container">
        <div class="rel_box"></div>
        <div class="flow_box"></div>
    </div>
</body>