Fill in the blanks to create a footer with an inset box-shadow and a 1 pixel border at the top. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 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; }

11th Feb 2021, 2:05 AM
Lokman punmagar
Lokman punmagar - avatar
2 Answers
+ 5
#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; }
11th Feb 2021, 3:26 AM
Harsh Jaiswal
Harsh Jaiswal - avatar
+ 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; }
6th Sep 2022, 4:04 AM
Prabhashwaree Nethmini
Prabhashwaree Nethmini - avatar