Tab Focus for following elements not working in Mozilla: <div class="editor-field"> <div> <%: Html.TextBox(model => model.AddressLine1, new { maxLength = 30, style = "width:300px", tabindex = "0" })%> </div> <div class="editor-field"> <div> <%: Html.TextBox(model => model.AddressLine2, new { maxLength = 30, style = "width:300px", tabindex = "0" })%> </div> <div class="editor-field"> <div> <%: Html.TextBox(model => model.AddressLine3, new { maxLength = 30, style = "width:300px", tabindex = "0" })%> </div>
.editor-field > div > input:focus { outline: 1px dotted red !important; -moz-user-focus: normal; }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)