| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <style> | 3 <style> |
| 4 body { overflow: hidden; } |
| 4 .floatblock { | 5 .floatblock { |
| 5 overflow:hidden; | 6 overflow:hidden; |
| 6 float:left; | 7 float:left; |
| 7 background-color:black; | 8 background-color:black; |
| 8 position:relative; | 9 position:relative; |
| 9 margin:5px; | 10 margin:5px; |
| 10 right:50%; | 11 right:50%; |
| 11 } | 12 } |
| 12 </style> | 13 </style> |
| 13 </head> | 14 </head> |
| 14 <body> | 15 <body> |
| 15 <div> | 16 <div> |
| 16 The six boxes below should be centered in two rows of three. | 17 The six boxes below should be centered in two rows of three. |
| 17 </div> | 18 </div> |
| 18 <div style="float:left; position:relative; left:50%"> | 19 <div style="float:left; position:relative; left:50%"> |
| 19 <div class="floatblock"><img width=200 height=200></div> | 20 <div class="floatblock"><img width=200 height=200></div> |
| 20 <div class="floatblock"><img width=200 height=200></div> | 21 <div class="floatblock"><img width=200 height=200></div> |
| 21 <div class="floatblock"><img width=200 height=200></div> | 22 <div class="floatblock"><img width=200 height=200></div> |
| 22 <br> | 23 <br> |
| 23 <div class="floatblock"><img width=200 height=200></div> | 24 <div class="floatblock"><img width=200 height=200></div> |
| 24 <div class="floatblock"><img width=200 height=200></div> | 25 <div class="floatblock"><img width=200 height=200></div> |
| 25 <div class="floatblock"><img width=200 height=200></div> | 26 <div class="floatblock"><img width=200 height=200></div> |
| 26 </div> | 27 </div> |
| OLD | NEW |