Problema de css
Publicado por Alan (2 intervenciones) el 01/02/2021 03:44:47
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
body {
font-family: georgia, times, serif;
color: #333;
font-size:1.2rem;
line-height: 1.6em;
margin: 0;
}
h1 {
font-size:2rem
line-height: 1.3em;
}
p {
margin-bottom: 1.6em;
}
.container {
width: 85%;
max-height: 850px;
margin: 0 auto;
}
.header {
background: #333;
color: white;
padding: 2rem 0;
}
.header a {
color: white;
text-decoration: none;
}
.logo-nav-container{
display: flex;
justify-content: space-between;
align-items: center;
}
.navigation a{
margin: 0;
padding: 0;
list-style: none;
}
.navigation a li{
display:inline-block;
}
.navigation a li ul{
display: block;
padding: 0.5rem 1rem;
}
.navigation a li ul:hover{
}
Valora esta pregunta


-1