OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <title>Column rule in scrollable multicol container</title> | |
5 <style> | |
6 body { | |
7 margin: 0; | |
8 } | |
9 </style> | |
10 </head> | |
11 <body> | |
12 <p>There should be <b>two</b> black squares below.</p> | |
13 <div style="float:right; width:100px; height:100px; margin-right:95px; backg round:black;"></div> | |
14 <div style="width:500px; margin:auto;"> | |
15 <div style="width:100px; height:100px; background:black;"></div> | |
16 </div> | |
17 </body> | |
18 </html> | |
OLD | NEW |