Note that there are some explanatory texts on larger screens.

plurals
  1. POIE alignment issue
    text
    copied!<p>I have a div that aligns well on Chrome but not Internet Explorer. As I cannot embed images here is a link to what happens. <a href="https://www.dropbox.com/s/ymzt6y3zwm6mylf/ie%20gc.png" rel="nofollow">https://www.dropbox.com/s/ymzt6y3zwm6mylf/ie%20gc.png</a></p> <p>The CSS for the element is</p> <pre><code> .calculator-submodule { float: left; text-align: center; padding-bottom: 10px; padding-right: 25px; font-size: 20px; font-weight: 300; } .calculator-submodule #total { padding-top: 42px; } .calculator-total { display: inline-block; padding-left:20px; padding-top: 40px; } </code></pre> <p>And HTML </p> <pre><code>&lt;div class="calculator"&gt; &lt;div class="calculator-submodule input-group"&gt; &lt;h4&gt;Adult (12+)&lt;/h4&gt; &lt;button class="btn theme-btn" id="decrease" value="Decrease Value" &gt;-&lt;/button&gt; &lt;input type="text" id="adult" value="1" class="form-control input-usmall" min="0" disabled&gt; &lt;button class="btn theme-btn" id="increase" value="Increase Value" &gt;+&lt;/button&gt; &lt;/div&gt; &lt;div class="calculator-submodule input-group"&gt; &lt;h4&gt;Child (2-11)&lt;/h4&gt; &lt;button class="btn theme-btn" id="decreasec" value="Decrease Value" &gt;-&lt;/button&gt; &lt;input type="text" id="child" value="0" class="form-control input-usmall" min="0" disabled&gt; &lt;button class="btn theme-btn" id="increasec" value="Increase Value" &gt;+&lt;/button&gt; &lt;/div&gt; &lt;div class="calculator-submodule"&gt; &lt;div id="total"&gt; &lt;span class="pound"&gt;£&lt;/span&gt; &lt;span id="total"&gt;39&lt;/span&gt;&lt;span class="pound"&gt;.00&lt;/span&gt; &lt;/div&gt; &lt;/div&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