Table-W100 stress test
by marakoss
HTML
<div id="test">
<table>
<tr>
<td>tralala</td>
<td>tralala</td>
<td>tralala</td>
</tr>
<tr>
<td>tralala</td>
<td>tralala</td>
<td>tralala</td>
</tr>
<tr>
<td>tralala</td>
<td>tralala</td>
<td>tralala</td>
</tr>
<tr>
<td>tralala</td>
<td>tralala</td>
<td>tralala</td>
</tr>
</table>
</div>
CSS
/*Reset*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
html {
line-height: 1;
}
h1 a,h2 a,h3 a,h4 a,h5 a,h6 a {
color: inherit;
}
a {
color: inherit;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:visited , a:active {
color: inherit;
}
a img {
border: none;
display: block;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
tbody, tr, th, td {
vertical-align: middle;
}
ul, li {
list-style:none;
}
input, select {
vertical-align: middle;
margin: 0;
padding: 0;
}
legend {
color:#000;
}
/*Magic*/
.hidden {
font-size: 0px;
line-height: 0px;
display: none;
visibility: hidden;
}
.invisible {
visibility: hidden;
}
.black {
color: #000 !important;
}
.gray {
color: #565656 !important;
}
.white {
color: #fff !important;
}
.red {
color: #f00 !important;
}
.green {
color: #a4db61 !important;
}
.blue {
color: #00f !important;
}
.yellow {
color: #fc0 !important;
}
.cyan {
color: #0ff !important;
}
.magenta {
color: #f0f !important;
}
.noborder {
border: none !important;
}
.nobg {
background: none !important;
}
.mt10 {
margin-top: 10px;
}
.mb10 {
margin-bottom: 10px;
}
.ml10 {
margin-left: 10px;
}
.mr10 {
margin-right: 10px;
}
.mt20 {
margin-top: 20px;
}
.mb20 {
margin-bottom: 20px;
}
.ml20 {
margin-left: 20px;
}
.mr20 {
margin-right:...