Created
March 28, 2019 13:16
-
-
Save sanohin/d8b8e7eb5367d5332a448b773c9f0902 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| </head> | |
| <body> | |
| <table id="layout"> | |
| <thead> | |
| <tr> | |
| <th> | |
| <header style="border: 1px solid red;"> | |
| Header here | |
| </header> | |
| </th> | |
| </tr> | |
| </thead> | |
| <tbody> | |
| <tr> | |
| <td> | |
| <div id="data"></div> | |
| </td> | |
| </tr> | |
| </tbody> | |
| </table> | |
| <script> | |
| document.getElementById("data").innerHTML = Array(300) | |
| .fill(null) | |
| .map((e, i) => `<p>Entry Last Line ${i}</p>`) | |
| .join(""); | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment