aboutsummaryrefslogtreecommitdiffstats
path: root/test/render/test32.htm
blob: d8f82182fdeb22a953018da643b25faceb420a1c (plain)
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
<html>
<head>
    <style>
        #content
        {
            color: #262626;
            min-width: 90%;
            max-width: 90%;
            background: #fafafa;
            overflow: hidden;
        }
        .wrapper
        {
            color: #262626;
            width: 100%;
            min-width: 100%;
            max-width: 100%;
            padding: 20px;
            box-sizing: border-box;
            border: 5px solid black;
        }
    </style>

</head>
<body>
<div id="content">
    <div class="wrapper" style="border: 5px solid black">
        <div style="clear: both; width: 100%; margin: auto auto">
            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
        </div>
        <div style="float: left">
            Lorem ipsum dolor sit
        </div>
        <br style="clear: both" />
    </div>
</div>
</body>
</html>