faq.md
... ...
@@ -67,21 +67,8 @@ Plan text before test table:
67 67
68 68
HTML table then iframe:
69 69
70
-<html>
71
-<head>
72
-<meta charset="UTF-8">
73
-<meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Scrollable Table</title>
74
-<style>
75
-.table-container {
76
-height: 50px; /* Adjust height to fit 20 rows */
77
-overflow-y: auto; /* Enable vertical scrolling */
78
-border: 1px solid #ccc; /* Optional: Add a border */
79
-}
80
-</style>
81
-</head>
82
-<body>
83
-<div class="table-container">
84
-<table>
70
+
71
+<table height: 50px; overflow-y: auto; border: 1px solid #ccc;>
85 72
<tr><td> Cell One</td></tr>
86 73
<tr><td> Cell One</td></tr>
87 74
<tr><td> Cell One</td></tr>
... ...
@@ -92,8 +79,6 @@ border: 1px solid #ccc; /* Optional: Add a border */
92 79
<tr><td> Cell One</td></tr><tr><td> Cell One</td></tr><tr><td> Cell One</td></tr><tr><td> Cell One</td></tr><tr><td> Cell One</td></tr><tr><td> Cell One</td></tr><tr><td> Cell One</td></tr>
93 80
<tr><td> Cell One</td></tr><tr><td> Cell One</td></tr><tr><td> Cell One</td></tr><tr><td> Cell One</td></tr><tr><td> Cell One</td></tr><tr><td> Cell One</td></tr>
94 81
</table>
95
-</div>
96
-</body>
97
-</html>
82
+
98 83
99 84
Plain text after test table.
... ...
\ No newline at end of file