Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!doctype html>
<style>
.card {
box-sizing: border-box;
height: 400px;
width: 300px;
overflow: clip;
border-radius: 4px;
}
.card-heading-image {
width: 900px;
height: 300px;
background: red;
transform: scaleX(-1);
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
</style>
<div class="card">
<div class="card-heading-image"></div>
</div>