Does CSS have statements that mask attributes?

is currently working on a website in multiple languages.
the solution is to make two HTML, one in Chinese and one in English. But share a CSS file.
there is a problem with typesetting because there are more English than Chinese, so redescribe it with! important on the HTML header of the English version to overwrite the properties of the CSS file.
now there is a problem that is very troublesome.
for example, a DIV is typeset like this in the CSS file, possition: absolute; left: 10pxposition. There"s another one in the back. Change the
to right:10px, and remove the left attribute.
what"s going on?

Jun.14,2021

left:initial

use class control, for example, class= "float-l" is float:left "float-r" is float:right

load different class


left: unset;
but you should take a look at the compatibility:

the default value of left is auto , change it to left: auto;

.
Menu