Skip to content

Instantly share code, notes, and snippets.

@sanohin
Created March 28, 2019 13:16
Show Gist options
  • Select an option

  • Save sanohin/d8b8e7eb5367d5332a448b773c9f0902 to your computer and use it in GitHub Desktop.

Select an option

Save sanohin/d8b8e7eb5367d5332a448b773c9f0902 to your computer and use it in GitHub Desktop.
<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