Archived topic
Unsupported CSS property: color
5 replies · Started by Renato on June 9, 2022
Hello,
Looking at the page speed information in the Avoid Non-Composite Animations section, I see this message:
Unsupported CSS property: color
It happens in all product sheets like this one

How can I fix this?
Hi Renato,
I don't think you need to worry about this warning, but if you do, try adding this CSS:
.woocommerce-tabs ul.tabs li a {
transition: none;
}
Thanks Ying, it worked, the warning from PageSpeed Insights is gone, but the problem with the CLS (desktop) remained unchanged. Evidently that was not the cause of the CLS problem
Thanks again Renato
The main cause of the CLS is the content area, so try add this CSS:
.left-sidebar .site-content .content-area {
margin-left: auto;
}
Seems to work fine, I'll wait for Google's 28 days to see if page speed works too, thanks Ying you were awesome
You are welcome :)