Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Use <a href="http://www.w3.org/TR/html401/interact/forms.html#adef-tabindex" rel="nofollow">tabindex</a> in your (X)HTML</p> <p>This works flawlessly in Seamonkey 2.0.11 and Chrome 10.0</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"&gt; &lt;head&gt; &lt;title&gt;untitled&lt;/title&gt; &lt;meta http-equiv="content-type" content="text/html;charset=utf-8" /&gt; &lt;style type="text/css"&gt; /* absolute positioning */ #form1 { position: absolute; bottom: 0; right: 0; width: 40%; } #form2 { position: absolute; top: 100px; left: 30px; width: 40%; } /* floats #form1 {float: right; width: 40%; } #form2 {float: left; width: 40%; } */ &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;form id="form1" action="#" method="get"&gt; &lt;fieldset&gt; &lt;legend&gt;Form 1&lt;/legend&gt; &lt;div&gt;&lt;label for="t1"&gt;T1&lt;/label&gt;&lt;input type="text" id="t1" name="t1" tabindex="1" /&gt;&lt;/div&gt; &lt;div&gt;&lt;label for="t3"&gt;T3&lt;/label&gt;&lt;input type="text" id="t3" name="t3" tabindex="3" /&gt;&lt;/div&gt; &lt;div&gt;&lt;label for="t2"&gt;T2&lt;/label&gt;&lt;input type="text" id="t2" name="t2" tabindex="2" /&gt;&lt;/div&gt; &lt;input type="submit" tabindex="4" /&gt; &lt;/fieldset&gt; &lt;/form&gt; &lt;form id="form2" action="#" method="get"&gt; &lt;fieldset&gt; &lt;legend&gt;Form 2&lt;/legend&gt; &lt;div&gt;&lt;label for="t6"&gt;T6&lt;/label&gt;&lt;input type="text" id="t6" name="t6" tabindex="6" /&gt;&lt;/div&gt; &lt;div&gt;&lt;label for="t5"&gt;T5&lt;/label&gt;&lt;input type="text" id="t5" name="t5" tabindex="5" /&gt;&lt;/div&gt; &lt;input type="submit" tabindex="7" /&gt; &lt;/fieldset&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

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