During the project development yesterday, I encountered a problem with style loading priority. The class is defined and is recognized during the initial loading of the page. A moment after the loading is completed, the style seems to be rewritten and the defined margin-bottom no longer works. Without this style, the controls are crammed together. During the test, FF and Chrome both work fine, but IE8 has a problem. However, using the IE developer tool, you can see that margin-bottom is recognized and has not been redefined. The problem is rather weird. This page is not an ordinary structure. The page content is generated asynchronously, rather than an ordinary page with various elements already written. As for what redefines the data at the moment of loading, the reason has not been found yet. The phenomenon is that if you click on any of the crowded form elements, all the forms in the module where it is located will load the margin-bottom style and will no longer be crowded together. Or use IE developer tools, first uncheck the box in front of margin-bottom, then select it, so that all form elements on the page that do not recognize margin-bottom will load this style normally. But this is definitely not the solution to the problem. Customers must not be allowed to see this problem. The UI is the part that can impress users the most, but it is also the part that is most likely to irritate users. Then I tried several methods, such as writing a style definition for margin-bottom instead of adding it to other definitions, but it didn't work; Adding !important, which is a high priority method, doesn't work either; Writing style directly has a lower priority than !important, and there is too much code redundancy and more disadvantages, so it is not acceptable. Then I tried a method, the script method, which worked. The code is as follows: Copy code The code is as follows:<script type="text/javascript"> document.getElementByClassName("mar_b_10").style.margin-bottom="10px"; </script> In fact, it is just a declaration again. The content is the same as the class, and the browser can recognize it. The style object controlled by JS, document.getElementByClassName("mar_b_10").style.margin-bottom="10px"; Generally, the style controlled by JS has a higher priority, because DOM operations are often performed after the DOM tree is loaded. After the DOM tree was loaded, I wrote js to redefine it. There was no other overwriting of the style definition, and the result was quite satisfactory. In general: [1 important flag] > [4 special flags] > declaration order !important > [inline style > ID selector > class, attribute, pseudo-class selector > element tag, pseudo-element selector] Using !important can change the priority to the highest, followed by the style object, then id > class > tag. In addition, the styles that appear after the same level styles in the order of declaration have high priority. |
>>: Detailed steps to use Arthas in a Docker container
1. Subquery MySQL 4.1 and above support subquerie...
Table of contents 1. Comments on MySQL primary ke...
Table of contents Preface 1. Nginx+Tomcat 2. Conf...
The ps command in Linux is the abbreviation of Pr...
1. Foreign key setting method 1. In MySQL, in ord...
Table of contents 1. v-text (v-instruction name =...
1. Today, when I was making a page, I encountered ...
Table of contents Install Tomcat with Docker Use ...
1. Docker Compose Overview Compose is a tool for ...
Table of contents Cause of the problem: Solution:...
Preface There are a lot of information and method...
After starting Docker, let's take a look at t...
This article example shares the specific code of ...
<br />When uploading on some websites, a [Se...
Table of contents 1. Preparation Pull the redis i...