mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-12 20:30:18 +00:00
26 lines
333 B
HTML
26 lines
333 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
row1.style.textAlign = "left";
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();">
|
|
|
|
<table>
|
|
<tbody>
|
|
<tr id="row1"></tr>
|
|
<tr>
|
|
<td style="position: sticky;"></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
</body>
|
|
</html>
|