OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <style> | |
3 .inline-block | |
4 { | |
5 width: 50px; | |
6 height: 50px; | |
7 background-color: green; | |
8 display: inline-block; | |
9 } | |
10 </style> | |
11 <p>crbug.com/523282: There should be a green <em>square</em> below.</p> | |
12 <div> | |
13 <div class="inline-block"></div> | |
14 </div> | |
OLD | NEW |