Source Code:
(back to article)
Submit
Result:
Report an issue
99
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
>
<
head
>
<
style
>
nav
{
font-size:
0
;
}
nav
a
{
display:
inline-block
;
background:
#1c87c9
;
font-size:
25
px
;
color:
white
;
font-weight:
bold
;
text-decoration:
none
;
}
</
style
>
</
head
>
<
body
>
<
nav
>
<
a
href=
"#"
>W</
a
>
<
a
href=
"#"
>3</
a
>
<
a
href=
"#"
> docs</
a
>
</
nav
>
</
body
>
</
html
>
<!DOCTYPE html> <html> <head> <style> nav { font-size: 0; } nav a { display: inline-block; background: #1c87c9; font-size: 25px; color: white; font-weight: bold; text-decoration: none; } </style> </head> <body> <nav> <a href="#">W</a> <a href="#">3</a> <a href="#"> docs</a> </nav> </body> </html>