OLD | NEW |
1 <div style="float:left; width:200px; height:100px; background-color:lime"></div
> | 1 <!DOCTYPE html> |
2 <div style="width:415px; -moz-column-width:200px; -webkit-column-width:200px;
| 2 <style> |
3 text-align:justify; border:10px solid black"> | 3 .float { |
4 <p>This technology preview of our award winning next generation browser | 4 float: left; |
5 is a sign of things to come from Mozilla. Powerful yet easy to use. This | 5 width: 200px; |
6 maintenance release provides a few updates based on user feedback - includi
ng | 6 height: 100px; |
7 changes to the Extension System and icon improvements. | 7 background-color: lime; |
| 8 } |
| 9 .multicol { |
| 10 width: 400px; |
| 11 -webkit-column-width: 200px; |
| 12 -webkit-column-gap: 0; |
| 13 border: 10px solid black; |
| 14 line-height: 20px; |
| 15 } |
| 16 </style> |
| 17 <div class="float"> |
| 18 </div> |
| 19 <div class="multicol"> |
| 20 First column<br> |
| 21 First column<br> |
| 22 First column<br> |
| 23 First column<br> |
| 24 First column<br> |
| 25 Second column<br> |
| 26 Second column<br> |
| 27 Second column<br> |
| 28 Second column<br> |
| 29 Second column<br> |
| 30 </div> |
OLD | NEW |