I'm using some extremely simple code to try and get this working and Twine seems not to like it. Is there alternate functionality? Am I doing something wrong?
<table border="1">
<tr>
<th>Column 1</th>
<th>Column 2</th>
</tr>
<tr>
<td style="height:100px">Red</td>
<td style="height:100px">Apple</td>
</tr>
<tr>
<td>Yellow</td>
<td>Banana</td>
</tr>
</table>
This code generates this:

As far as what I'm trying to accomplish, I have an inventory screen that I'd like to split into sections of specific pixel height and width.

Should I be using frames? Is there someway to get tables to behave? If anybody can help that would be tremendous.
Comments
Here's a screenshot of the code on a single line:
But it involves a bit of guesswork since I don't have control over rows, so this is definitely a work around.
it looks like to fix it, you need to explicitly place a <tbody> tag in there: which should look a lot more like what you're after. ...also, since it wraps those spaces used to indent in character spans, you might have to remove them to make it look perfectly "proper", otherwise there's some weird padding inside the table borders.
(The default sugarcane layout also changes table cell borders; you may or may not want to put in a stylesheet to change it back)
Just today, I really started to try to teach myself the basics of CSS, so I'm pretty new to this.
I know you have the #invframe in the stylesheet and I'm guessing you're using <div id="#invframe">Inventory</div>, right?
I don't see any positioning in your CSS, though.
Thanks!
Ah, yes. Thanks!