JSFiddle - React, Tailwind, and code Playground

HTML

<table>
		<tr>
			<td>1</td>
		</tr>
	</table>

CSS

* { margin: 0; padding: 0;}
body { position: relative; overflow: hidden;}
table { 
	font-size: 70px; 
	width: 2000px; 
	background: red; 
	text-align: center;
	position: absolute;
	left: 50%;
	margin-left: -1000px;
}