I saw in some themes the following CSS rule:

body {
  visibility: visible !important;
}

What is purpose to set this? may be for older browser? Other?

Visible is the default value. !important forces it to happen.

There may be some other code in the media queries that affect this, this insurance it continues to happen.

1 Like