padding-applies-to-008

Padding applied to element with display inline

WeasyPrint

This browser

Assertion
The 'padding' property applies to elements with a display of inline.

Source

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
 2 <html>
 3     <head>
 4         <title>CSS Test: Padding applied to element with display inline</title>
 5         <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
 6         <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#propdef-padding">
 7         <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#padding-properties">
 8         <meta name="flags" content="">
 9         <meta name="assert" content="The 'padding' property applies to elements with a display of inline.">
10         <style type="text/css">
11             p
12             {
13                 margin-bottom: 100px;
14             }
15             div
16             {
17                 display: inline;
18             }
19             #div1
20             {
21                 border: 10px solid blue;
22                 padding: 50px;
23             }
24             div div
25             {
26                 border: 10px solid orange;
27             }
28         </style>
29     </head>
30     <body>
31         <p>Test passes if there is space between the blue and orange lines on all four sides.</p>
32         <div id="div1">
33             <div>Filler Text</div>
34         </div>
35     </body>
36 </html>