This forum is now read-only. Please use our new forums! Go to forums

0 points
Submitted by Leila Yar
over 8 years

The CSS selector "#content p" will select which of the following?

The CSS selector “#content p” will select which of the following?

1- elements with an id = content that are located within a paragraph 2- only paragraphs which have an id = content 3- paragraphs located within the element with an id = content

Answer 55e1594ae39efeb7bf000287

0 votes

Permalink

the answer is ptions number 3, paragraphs located within the element with an id = content

the html code could something like:

<div id="content">
  <p>hello</p>
</div>
points
Submitted by stetim94
over 8 years