blob: a3e7369afbae5c35cabbda9aa1a0fe8ab4521af4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Test Reference</title>
<link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org">
<style>
.carousel {
position: relative;
overflow: hidden;
height: 300px;
}
.scroller {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: auto;
}
.slides {
width: 200%;
display: flex;
}
.slide {
flex: 0 0 50%;
contain: paint;
}
img {
width: 300px;
height: 250px;
}
</style>
<div class="carousel">
<div class="scroller">
<div class="slides">
<div class="slide">
<img id="image" src="/images/green-256x256.png">
</div>
</div>
</div>
</div>
|