Setting Cell Widths (not working)
B
Brian Miller
I would like to lock the cell width for a table cell. This is pretty standard in HTML. However, when I enter the normal HTML code <td width="200">Cell 1</td>, Habitat throws an error. I would like to do this for cells with an image in them. It's not working.
QUESTION: What am I doing wrong?
HABITAT CODE
<td data-uuid="68d4374119a94cb88f7f4cecd251d0d2">
<figure class="figure-image img" data-uuid="7a5d8f0fef3846ab9d13954658a00ab9">
<img alt="" data-uuid="7dbaa895905347d9970d063a3d8e3f12" src="../../img/cre_ch03/nakatadaimaru_timeline.png" />
</figure>
</td>
NORMAL HTML FIX (that doesn't work in Habitat)
<tr>
<td width="100" height="50">Cell 1</td>
<td width="150" height="50">Cell 2</td>
</tr>