Learn CSS Grid by Building a Magazine - Step 64 - pseudo selector quotes

Tell us what’s happening:

Can’t get past this step. What am I doing wrong? I just keep getting: " Your .quote::before selector should have a content property set to '" ' . Which I feel like I’ve done, help!

Step question is as follows:

"A quote is not really a quote without proper quotation marks. You can add these with CSS pseudo selectors.

Create a .quote::before selector and set the content property to " with a space following it.

Also, create a .quote::after selector and set the content property to " with a space preceding it."

My code so far

.quote::before {
	content: " ;
}

.quote::after {
	content: " ;
}

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36

Challenge: Learn CSS Grid by Building a Magazine - Step 64

Link to the challenge:

This should be the literal value you are using. Currently you are using " alone.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.