- 1
Fill in the blanks to create a footer with an inset box-shadow and a 1 pixel border at the top.
#footer { ................. top: 1px solid rgba(0, 0, 0, 0.3); background: rgba(0, 0, 0, 0.25); box-..................... : ..................... 0 1px rgba(255, 255, 255, 0.3); height: 40px; }
2 ответов
+ 6
#footer{
border-top: 1px solid rgba(0, 0, 0, 0.3);
background: rgba(0, 0, 0, 0.25);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.3);
height: 40px;
}
+ 1
#footer
{
border-
top: 1px solid rgba(0, 0, 0, 0.3);
background: rgba(0, 0, 0, 0.25);
box-
shadow
:
inset
0 1px
rgba(255, 255, 255, 0.3);
height: 40px;
}