Anonymous ID: e9f8c3 Sept. 23, 2021, 11:42 p.m. No.14649019   🗄️.is 🔗kun   >>9029

>>14648990

it's a css thing

it basically means "give this rule higher importance than any subsequent rules of this type"

 

so if you did:

#vrecorder { display: none !important; }

#vrecorder { display: block; }

 

the top one takes priority because it has higher importance

if you removed the !important the bottom one would have higher importance because all other factors being equal, it is defined after the first thus overriding the first one

 

there is more to it than that but whatever, hope that makes sense