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
This article example shares the specific code of ...
Table of contents Index Type Index structure Nonc...
This article introduces the CSS Sticky Footer imp...
CSS scroll bar style modification code .scroll::-...
Table of contents What is Express middleware? Req...
There are many differences between IE6 and IE7 in ...
Written in front When we operate the database in ...
Operating system: Window10 MySQL version: 8.0.13-...
1. Conclusion Syntax: limit offset, rows Conclusi...
Table of contents 1. Installation 2.APi 3. react-...
Table of contents 01 Background 02 Introduction 0...
Table of contents 1. Two setState, how many times...
I have always used Loadrunner to do performance t...
After the worker process is started, it will firs...
How to write configuration files and use MyBatis ...