Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>I wonder if the following will help:</p> <ol> <li><p>Wrap those body rows in a tbody element:</p></li> <li><p>Remove the width="100%" from your header row. Colspan="5" should span the width of the table anyway, with the browser sizing accordingly. I wonder if the Google browser is interpreting that literally as the width of the current screen.</p></li> <li><p>Add the following to the class for .amhtable:</p> <pre><code>float: left; width: 100%; </code></pre></li> </ol> <p>To see if it's a relative sizing bug.</p> <p>Out of interest, does this happen if the heading row appears anywhere in the table? Or is it just the first time it occurs after thead?</p> <pre><code>&lt;table class="amhtable"&gt; &lt;col width="16.72%" /&gt; &lt;col width="16.62%" /&gt; &lt;col width="16%" /&gt; &lt;col width="16%" /&gt; &lt;col width="34.67%" /&gt; &lt;thead&gt; &lt;tr class="heading"&gt; &lt;td&gt;Modifying circumstance&lt;/td&gt; &lt;td&gt;Common pathogens&lt;/td&gt; &lt;td&gt;First choice&lt;/td&gt; &lt;td&gt;Alternative&lt;/td&gt; &lt;td&gt;Additional information&lt;/td&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tbody&gt; &lt;tr class="heading2"&gt; &lt;td colspan="5"&gt;SECTION TITLE&lt;/td&gt; &lt;/tr&gt; &lt;tr class="body"&gt; &lt;td&gt;column 1&lt;/td&gt; &lt;td&gt;column 2&lt;/td&gt; &lt;td&gt;column 3&lt;/td&gt; &lt;td&gt;column 4&lt;/td&gt; &lt;td&gt;column 5&lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt; &lt;/table&gt; </code></pre> <p>What happens if you try that?</p> <p>Other things you might try are putting the actual heading text in an element like:</p> <pre><code>&lt;tr class="heading2"&gt; &lt;td colspan="5"&gt;&lt;span style="100%"&gt;SECTION TITLE&lt;/span&gt;&lt;/td&gt; &lt;/tr&gt; </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload