blob: d0a498f2462a195270f80473dca9c298a5d79ae3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!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>
|