It seems there are some Problems with rendering in Chrome. I roate/skew a container with an inverse child container to get a slanted top and bottom.
When i place a HTML Video or a Slider which uses other CSS transformations, the content and the following HTML gets blurry.
Are there any Workarounds to fix this in Chrome?
Demo: https://codepen.io/anon/pen/BxBpKw
HTML
<div class="article skew">
<div class="content skew-inverse">
<div class="image-background"></div>
<!-- Content Elements !-->
</div>
</div>
CSS:
.article {
transform: skewY(3deg);
}
.content {
transform: skewY(-3deg);
}