[ARCHIVED] Creating large table (Greater than 10 by 10)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I am attempting to create a table in quizzes. The table needs to be 18 by 18, the cells are equal size. I have edited the html code to try to create a table of this size. I get a warning that the question exceeds the max size (16384). Below is the code for one row. How do I fix this?
<tr style="height: 24px;">
<td style="width: 5%; height: 10px;"></td>
<td style="width: 5%; height: 10px;"></td>
<td style="width: 5%; height: 10px;"></td>
<td style="width: 5%; height: 10px;"></td>
<td style="width: 5%; height: 10px;"></td>
<td style="width: 5%; height: 10px;"></td>
<td style="width: 5%; height: 10px;"></td>
<td style="width: 5%; height: 10px;"></td>
<td style="width: 5%; height: 10px;"></td>
<td style="width: 5%; height: 10px;"></td>
<td style="width: 5%; height: 10px;"></td>
<td style="width: 5%; height: 10px;"></td>
<td style="width: 5%; height: 10px;"></td>
<td style="width: 5%; height: 10px;"></td>
<td style="width: 5%; height: 10px;"></td>
<td style="width: 5%; height: 10px;"></td>
<td style="width: 5%; height: 10px;"></td>
<td style="width: 5%; height: 10px;"></td>
</tr>
This discussion post is outdated and has been archived. Please use the Community question forums and official documentation for the most current and accurate information.