To optimize performance, Bootstrap recommends using 'transform' and 'opacity' properties for animations because they do not trigger ___.

  • Layout reflows
  • Browser repaints
  • Forced synchronous layouts
  • GPU acceleration
In Bootstrap, using 'transform' and 'opacity' properties is recommended for animations as they trigger GPU acceleration, which improves performance by offloading the animations to the GPU. This avoids layout reflows, which are resource-intensive and can cause performance bottlenecks.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *