-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1.1_flexbox.html
56 lines (54 loc) · 1.16 KB
/
1.1_flexbox.html
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
<html>
<head>
<style>
body {
margin: 0;
font-family: arial;
}
.container {
display: flex;
justify-content: center;
box-shadow: 0 0 16px #1e1e1e;
}
.item {
height: 60px;
margin: 10px 20px;
display: flex;
justify-content: center;
align-items: center;
}
.item:first-child {
flex: auto;
justify-content: start;
}
.item {
justify-content: center;
}
.link-pretty {
text-decoration: none;
color: black;
}
.link-pretty:hover {
text-decoration: underline;
}
.menu {
width: 24px;
}
</style>
</head>
<body>
<div class="container">
<div class="item">
<img src="https://static-cse.canva.com/blob/951789/1250logotiposqueteinspiraran.png" style="width: auto; height: 50px;">
</div>
<div class="item">
<a class="link-pretty" href="https://google.es" target=_blank>Item 2</a>
</div>
<div class="item">
<a class="link-pretty" href="https://google.es" target=_blank>
<img class="menu" src="https://www.svgrepo.com/show/509298/align-right.svg">
</a>
</div>
</div>
</body>
</html>