Note that there are some explanatory texts on larger screens.

plurals
  1. POBack button and backspace not working in IE on a page with a fixed top div and named links
    text
    copied!<p>Either the Back button nor backspace is working in IE on a page with a fixed top div and named links.</p> <p><strong>Edit</strong>: I've clarified my problem with this updated code. Everything works fine in Chrome and Firefox but not in IE. </p> <pre><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"&gt; &lt;html&gt; &lt;head&gt; &lt;style type="text/css"&gt; .divButtons { z-index: 999; position: fixed; width: 100%; height: 38px; top: 0px; left: 0px; background-color: #f3f3f3; border-bottom: #ccc 1px solid; } .divFullViewArea { position: absolute; top: 38px; } .divViewArea { padding-top: 20px; } &lt;/style&gt; &lt;!--[if IE]&gt; &lt;style type="text/css"&gt; * { margin: 0px } html { min-height: 100%; height: 100%; overflow: auto } body { min-height: 100%; height: 100%; overflow: auto } .divFullViewArea { position: relative; padding-bottom: 8px; padding-left: 8px; width: 100%; padding-right: 8px; height: 95%; overflow: auto; padding-top: 8px } .divFullViewArea * { margin: auto } .divButtons { position: fixed; margin: 0px; top: 0px; left: 0px } * html .divButtons { position: absolute; } &lt;/style&gt; &lt;![endif]--&gt; &lt;/head&gt; &lt;body&gt; &lt;div class="divButtons"&gt; Top &lt;/div&gt; &lt;div class="divFullViewArea"&gt; &lt;p&gt; &lt;a id="link1" href="#chapter1"&gt;Chapter 1&lt;/a&gt; &lt;br&gt; &lt;a id="link2" href="#chapter2"&gt;Chapter 2&lt;/a&gt; &lt;br&gt; &lt;br&gt; &lt;br&gt; &lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt; &lt;a name="chapter1"&gt;Chapter 1&lt;/a&gt; &lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt; &lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt; &lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt; &lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt; &lt;a name="chapter2"&gt;Chapter 2&lt;/a&gt; &lt;br&gt; &lt;br&gt; &lt;/p&gt; &lt;/div&gt; &lt;/body&gt; </code></pre> <p></p> <p>Any suggestions?</p>
 

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