I got 2 questions about refactoring our legacy CSS for performance improvement.
(1) The following printer-related CSS is included in a common.css and some elements apply the selectors. Does it affect browser rendering performance? In other words, other than printing the page, do the browsers use the CSS to check whether an element matches the selectors?
@media print
{
body * {visibility:hidden}
#xView, #xView * {visibility:visible; }
#xView {position:fixed;}
}
(2) How do I evaluate the performance improvement after refacotring?
Thanks.