Support Forums

Full Version: CSS Problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Lexical error at line 52, column 2. Encountered: "\n" (10), after : "@" media print { .tabcontent { display:block !important; } }

PHP Code:
@
media print {
.
tabcontent {
display:block !important;
}




Which code should I change to get rid of the error.
Try
Code:
@
media print {
}
.tabcontent {
display:block !important;
}