93.4k views
14 votes
Write the CSS to configure an h1 selector with drop shadow text, a 50%

transparent background color, and sans-serif font that is 4em in size.​

User ATorras
by
5.4k points

1 Answer

12 votes

Step-by-step explanation:

h1{

tect-shadow: ;

background-size: 50%;

background-color: transparent;

font-family: sans-serif;

font-size: 4em;

}

User BillFienberg
by
6.4k points