A short explanation. . .
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
47
48
49
50
51
52
<style>
/* Set the printed page size to 3" x 3" */
@page {
size: 3in 3in;
margin: 0;
}
body {
margin: 0;
padding: 0;
background-color: white;
}
/* Each profile is a 3x3 card */
.profile-page {
width: 3in;
height: 3in;
display: flex;
justify-content: center;
align-items: center;
position: relative;
page-break-after: always;
}
.profile-photo {
width: 3in;
height: 3in;
overflow: hidden;
position: relative;
}
/* Image fills the square */
.profile-photo img {
width: 100%;
height: 100%;
object-fit: cover;
}
/* Name bar at the bottom */
.name-box {
position: absolute;
bottom: 0;
width: 100%;
background-color: #2D4C9B;
color: white;
text-align: center;
padding: 0.2in 0;
font-size: 18px;
font-family: 'Avenir', sans-serif;
line-height: 1.1;
}
</style>