41.0k views
5 votes
1. Write the CSS for an id with the following characteristics: fixed position, light grey background color, bold font weight, and 10 pixels of padding

User Spinfire
by
6.3k points

1 Answer

2 votes

Answer:

#element

{

position: fixed;

background-color: RGBA(211, 211, 211, 1);

font-weight: bold;

padding: 10px;

}

User Jwiklund
by
6.7k points