IE6 distortion problem

IE6 distortion problem

question:

<input type="hidden" name="sortBy" id="sortBy" value="${sortBy}"> below <form...> occupies a physical position. The code is as follows:

<form name="header_product_search_form" method="post" id="header_product_search_form" action="${ctxPath }/products/productsSearch.html?doAction=productSearchAction">
<input type="hidden" name="headSearchCategoryPath" id="headSearchCategoryPath" value="${categoryPath }">
<input type="hidden" name="headSearchAttributePath" id="headSearchAttributePath" value="${headSearchAttributePath }">
<input type="hidden" name="attributePathInputValue" id="attributePathInputValue" value="${attributePathInputValue}">
<input type="hidden" name="PrmItemsPerPage" id="PrmItemsPerPage" value="${pagingBean.itemsPerPage}">
<input type="hidden" name="PrmPageNo" id="PrmPageNo" value="${pagingBean.currentPage}">
<input type="hidden" name="PrmTotalItems" id="PrmTotalItems" value="${pagingBean.numberOfItems}">
<input type="hidden" name="PrmTotalPages" id="PrmTotalPages" value="${pagingBean.numberOfPages}">
<input type="hidden" name="sortBy" id="sortBy" value="${sortBy}">

..............

..............

</form>

As shown above, the red hidden input box is directly below the form tag, resulting in distorted display in IE. The hidden input box occupies the physical space, leaving a blank space in IE. It displays normally in Firefox.

Solution:

Put the hidden input box at the end of the form tag, that is, above </form>, and it will display normally in IE. The code is as follows:

<form name="header_product_search_form" method="post" id="header_product_search_form" action="${ctxPath }/products/productsSearch.html?doAction=productSearchAction">

..............

..............
<input type="hidden" name="headSearchCategoryPath" id="headSearchCategoryPath" value="${categoryPath }">
<input type="hidden" name="headSearchAttributePath" id="headSearchAttributePath" value="${headSearchAttributePath }">
<input type="hidden" name="attributePathInputValue" id="attributePathInputValue" value="${attributePathInputValue}">
<input type="hidden" name="PrmItemsPerPage" id="PrmItemsPerPage" value="${pagingBean.itemsPerPage}">
<input type="hidden" name="PrmPageNo" id="PrmPageNo" value="${pagingBean.currentPage}">
<input type="hidden" name="PrmTotalItems" id="PrmTotalItems" value="${pagingBean.numberOfItems}">
<input type="hidden" name="PrmTotalPages" id="PrmTotalPages" value="${pagingBean.numberOfPages}">
<input type="hidden" name="sortBy" id="sortBy" value="${sortBy}">

</form>

<<:  Pure CSS3 mind map style example

>>:  Vue implements the full selection function

Blog    

Recommend

Which one should I choose between MySQL unique index and normal index?

Imagine a scenario where, when designing a user t...

Building a selenium distributed environment based on docker

1. Download the image docker pull selenium/hub do...

How to implement mask layer in HTML How to use mask layer in HTML

Using mask layers in web pages can prevent repeat...

What to do if you forget your mysql password

Solution to forgetting MySQL password: [root@loca...

Installing the ping tool in a container built by Docker

Because the Base images pulled by Docker, such as...

How to implement n-grid layout in CSS

Common application scenarios The interfaces of cu...

Linux general java program startup script code example

Although the frequency of starting the shell is v...

HTML Tutorial: Collection of commonly used HTML tags (5)

Related articles: Beginners learn some HTML tags ...

mysql 5.7.23 winx64 decompression version installation tutorial

Detailed installation tutorial of mysql-5.7.23-wi...

CSS flex several multi-column layout

Basic three-column layout .container{ display: fl...

MYSQL performance analyzer EXPLAIN usage example analysis

This article uses an example to illustrate the us...

CentOS 7.9 installation and configuration process of zabbix5.0.14

Table of contents 1. Basic environment configurat...

It's the end of the year, is your MySQL password safe?

Preface: It’s the end of the year, isn’t it time ...

MySQL 8.0.11 installation tutorial with pictures and text

There are many tutorials on the Internet, and the...