excuse me:
-
Will the
css code report an error? For example, a property name or attribute value is miswritten, or the style is not written in the selector
1. div{ width:pink; display:noner; } 2. overflow:hidden; div{ width:100px; }
- does the console prompt if there is an error in css? There is an error in
- css. Will all the code after the error be terminated?
the result of my test is:
- if there is only a writing error in the property in the selector, the error will not be reported. The following code executes normally
- if the property is not written in the selector, the error will not be reported, the code inside the next selector of the error code will not be executed, and the rest will be normal.
I hope someone can help me analyze and analyze the underlying foundation of this css.