JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<div class="outer">
<div class="wrap">
<table><tr><td>1</td></tr></table>
</div>
</div>
</body>
</html>
CSS
* { margin: 0; padding: 0;}
body { width: 100%; border: 1px solid #000; height: 500px; padding: 0;}
table {
width: 100%;
border-collapse: collapse;
border-spacing: 0;
}
.outer { float: left; padding: 20px; background: orange}
.wrap { float: left; background:red; min-width: 100%}