Element Pack changes all elements box-sizing to border-box
-
Hi There elelement pack developers
The plugin is adding global wild card css that changes all elements in each other plugin and theme to box-sizing: border-box
It is done in the ep-helpers.css and has the following css
<code>*, *::before, *::after{box-sizing:border-box}</code>
The css sets every element as well as each elements before and after pseudo classes (*, *::before, *:: after) to box-sizing:border-box. You can not do such as this is against all coding standards. This kind of global wildcard css causes mayor issues in websites.
You can not change every element to border-box as the browser default is content-box.
Could you please revert this and address only your own elements by css. I am aware that this cause more work on your css, but it is the only right way of coding.
I am aware that of the fact one can create css to override your css. But you are now FORCING all themes and plugins to do this. This is not the correct way to do such.
Please revert this code change as this is against all coding policies. Even here at wordpress there is not a single plugin doing this.
Thank you.
- The topic ‘Element Pack changes all elements box-sizing to border-box’ is closed to new replies.