-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflexbox.html
More file actions
79 lines (76 loc) · 1.67 KB
/
flexbox.html
File metadata and controls
79 lines (76 loc) · 1.67 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
<!-- <html>
<head>
<style>
#nav{
background-color: rgb(19, 17, 15);
display: flex;
height:50px;
justify-content: space-between;
align-items: center;
cursor: pointer;
}
#home_div{
display: flex;
width:350px;
justify-content: space-between;
}
a{
color: violet;
}
</style>
<body>
<div id="nav">
<div>
<a>home</a>
</div>
<div id="home_div">
<a>home</a>
<a>home</a>
<a>home</a>
</div>
<div>
<button>login</button>
</div>
</div>
</body>
</head>
</html> -->
<html>
<style>
#nav{
/* background-color: rgb(19, 17, 15); */
display: flex;
/* height:50px; */
justify-content: space-around;
/* align-items: center;
cursor: pointer; */
}
/* #home_div{
display: flex;
width:350px;
justify-content: space-between;
}
a{
color: violet;
} */
</style>
<head>
<body>
<div id="nav">
<div>
<a>Navbar</a>
</div>
<div>
<a>home</a>
</div>
<div>
<a>link</a>
</div>
<div>
<a>Dropdown</a>
</div>
</div>
</div>
</body>
</head>
</html>