faq.md
... ...
@@ -67,11 +67,25 @@ Plan text before test table:
67 67
68 68
HTML table then iframe:
69 69
70
-<html><body>
70
+<html>
71
+<head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Scrollable Table</title> <style>
72
+ /* Style for the scrollable table container */
73
+ .table-container { height: 100px; /* Adjust height to fit 20 rows */ overflow-y: auto; /* Enable vertical scrolling */ border: 1px solid #ccc; /* Optional: Add a border */ }
74
+</style>
75
+<body>
76
+<div class="table-container">
71 77
<table>
72 78
<tr><td> Cell One</td></tr>
79
+<tr><td> Cell One</td></tr>
80
+<tr><td> Cell One</td></tr>
81
+<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>
82
+<tr><td> Cell One</td></tr>
83
+<tr><td> Cell One</td></tr><tr><td> Cell One</td></tr>
84
+<tr><td> Cell One</td></tr><tr><td> Cell One</td></tr>
85
+<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>
86
+<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>
73 87
</table>
74
-<iframe src="https://www.google.com" title="Example Website" width="600" height="400"></iframe>
88
+</div>
75 89
</body>
76 90
</html>
77 91