This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
higor
/
bootcamp
Watch
0
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Inclusão do CSS na página Extinções
master
higor
3 years ago
parent
6fdce852e0
commit
3b435b2309
2 changed files
with
24 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
natureza/extincoes/extincoes.html
+22
-0
natureza/extincoes/style.css
+ 2
- 1
natureza/extincoes/extincoes.html
View File
@ -2,9 +2,10 @@
<
html
>
<
head
>
<
title
>
EXTINCOES
<
/
title
>
<
link
rel
=
"stylesheet"
href
=
"style.css"
>
<
/
head
>
<
body
>
<
table
cellspacing
=
"5"
cellpadding
=
"10"
border
=
"2"
>
<
table
>
<
thead
>
<
tr
>
<
th
>
Nome
<
/
th
>
+ 22
- 0
natureza/extincoes/style.css
View File
@ -0,0 +1,22 @@
table
{
border-collapse
:
collapse
;
width
:
100
%
;
}
th
,
td
{
padding
:
15px
;
text-align
:
left
;
}
thead
{
background-color
:
#
04AA6D
;
color
:
white
;
}
tbody
tr
:
nth-child
(
odd
)
{
background-color
:
#
f2f2f2
;
}
tbody
tr
:
hover
{
background
:
#
01cf00
;
}
Write
Preview
Loading…
Cancel
Save