-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathborder3.html
More file actions
25 lines (25 loc) · 819 Bytes
/
border3.html
File metadata and controls
25 lines (25 loc) · 819 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Border | Tailwind</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="h-screen justify-center items-center flex">
<div class="flex space-x-4">
<button class="outline outline-2 outline-red-500 p-4">
Outline Button
</button>
<button class="outline outline-2 outline-blue-500 outline-dashed p-4">
Outline Button
</button>
<button class="outline outline-2 outline-blue-500 outline-dotted p-4">
Outline Button
</button>
<button class="outline outline-3 outline-blue-500 outline-solid p-4">
Outline Button
</button>
</div>
</body>
</html>