-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwidth.html
More file actions
97 lines (95 loc) · 3.25 KB
/
width.html
File metadata and controls
97 lines (95 loc) · 3.25 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tailwindcss | Width</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-300 h-screen place-content-center items-center flex">
<div class="block">
<div class="flex space-x-2">
<div
class="rounded-xl size-16 bg-purple-400 border border-gray-500 text-inline text-center py-4"
>
Size 16
</div>
<div
class="rounded-xl size-20 bg-purple-400 border border-gray-500 text-inline text-center py-4"
>
Size 20
</div>
<div
class="rounded-xl size-24 bg-purple-400 border border-gray-500 text-inline text-center py-4"
>
Size 24
</div>
<div
class="rounded-xl size-32 bg-purple-400 border border-gray-500 text-inline text-center py-4"
>
Size 32
</div>
<div
class="rounded-xl size-40 bg-purple-400 border border-gray-500 text-inline text-center py-4"
>
Size 40
</div>
</div>
<!-- another div -->
<div class="mt-3">
<div class="space-y-2 w-20 bg-white">
<div
class="min-w-80 border border-gray-700 bg-sky-300 p-2 rounded-r-full text-center"
>
min-w-80
</div>
<!-- <div class="min-w-64 border border-gray-700 bg-pink-300 p-2 rounded-r-full text-center">min-w-64</div>
<div class="min-w-48 border border-gray-700 bg-sky-300 p-2 rounded-r-full text-center">min-w-48</div>
<div class="min-w-40 border border-gray-700 bg-pink-300 p-2 rounded-r-full text-center">min-w-40</div>
<div class="min-w-32 border border-gray-700 bg-sky-300 p-2 rounded-r-full text-center">min-w-32</div>
<div class="min-w-24 border border-gray-700 bg-pink-300 p-2 rounded-r-full text-center">min-w-24</div> -->
</div>
</div>
<!-- another div -->
<div class="mt-3">
<div class="space-y-2 w-full bg-indigo-400 py-2 px-1">
<div
class="p-2 w-full max-w-96 text-center text-white rounded-r-full bg-gray-500"
>
max-w-96
</div>
<div
class="p-2 w-full max-w-80 text-center text-white rounded-r-full bg-gray-500"
>
max-w-80
</div>
<div
class="p-2 w-full max-w-64 text-center text-white rounded-r-full bg-gray-500"
>
max-w-64
</div>
<div
class="p-2 w-full max-w-48 text-center text-white rounded-r-full bg-gray-500"
>
max-w-48
</div>
<div
class="p-2 w-full max-w-40 text-center text-white rounded-r-full bg-gray-500"
>
max-w-40
</div>
<div
class="p-2 w-full max-w-32 text-center text-white rounded-r-full bg-gray-500"
>
max-w-32
</div>
<div
class="p-2 w-full max-w-24 text-center text-white rounded-r-full bg-gray-500"
>
max-w-24
</div>
</div>
</div>
</div>
</body>
</html>