summaryrefslogtreecommitdiffstats
path: root/layout/reftests/forms/input/percentage/padding.html
blob: 7b792595b49298407720ee2416f9ad40f1425c2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<html>
    <head>
        <style>
            .container {
                width: 400px;
                background: #ddd;
            }
            .text-input {
                width: 50%; /* 200px */
                padding: 10%; /* 40px */
                background: #fff;
            }
        </style>
    </head>
    <body>
        <div class="container">
            <input type="text" class="text-input" />
        </div>
    </body>
</html>