533,891 views
29 votes
29 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 Ugy
by
3.1k points

1 Answer

15 votes
15 votes

Step-by-step explanation:

h1{

tect-shadow: ;

background-size: 50%;

background-color: transparent;

font-family: sans-serif;

font-size: 4em;

}

User Rachel
by
2.9k points