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"> .............. .............. </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"> .............. .............. </form> |
<<: Pure CSS3 mind map style example
>>: Vue implements the full selection function
Imagine a scenario where, when designing a user t...
1. Download the image docker pull selenium/hub do...
Using mask layers in web pages can prevent repeat...
Solution to forgetting MySQL password: [root@loca...
Because the Base images pulled by Docker, such as...
Preface As a heavy user of front-end frameworks, ...
Common application scenarios The interfaces of cu...
Although the frequency of starting the shell is v...
Related articles: Beginners learn some HTML tags ...
Detailed installation tutorial of mysql-5.7.23-wi...
Basic three-column layout .container{ display: fl...
This article uses an example to illustrate the us...
Table of contents 1. Basic environment configurat...
Preface: It’s the end of the year, isn’t it time ...
There are many tutorials on the Internet, and the...