blob: e487b961d19cfbb3abc7d44fc3f4555524f50374 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!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;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
</style>
<div class="card">
<div class="card-heading-image"></div>
</div>
|