layout/reftests/margin-collapsing/column-sibling-1a.html

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

     1 <!DOCTYPE html>
     2 <html>
     3 <head>
     4 <style type="text/css">
     5 #block1, #block2 {
     6  height: 20px;
     7  background-color: orange;
     8 }
     9 #block1 {
    10  margin-bottom: 10px;
    11 }
    12 #multi-column {
    13  -moz-column-count: 1;
    14  column-count: 1;
    15  height: 20px;
    16  margin: 20px 0;
    17  background-color: blue;
    18 }
    19 #block2 {
    20  margin-top: 10px;
    21 }
    22 </style>
    23 </head>
    24 <body>
    25 <div id="block1"></div>
    26 <div id="multi-column"></div>
    27 <div id="block2"></div>
    28 </body>
    29 </html>

mercurial