| <!DOCTYPE html> | |
| <style> | |
| body { | |
| height: 1000px; | |
| padding-top: 300px; | |
| } | |
| body > div { | |
| display: inline-block; | |
| width: 100px; | |
| height: 100px; | |
| background: green; | |
| } | |
| </style> | |
| You should see three green boxes.<br> | |
| <div></div> | |
| <div></div> | |
| <div></div> | |
| <script> | |
| // Scroll on load to test fixed positioning. | |
| scrollTo(0, 300); | |
| </script> |