Learn CSS Grid by Building a Magazine - Step 64
See original GitHub issueDescribe the Issue
The instruction can confuse people who are used to use "
as the enclosing character for strings.
Id suggest giving a tip (?) that you can also use '
to enclose strings.
Which brings me to this bug (see Your code section) which is accepted when I was first confused. Then I went to the next step to see what they meant by the question haha.
Affected Page
Your code
.quote::before{
content: " ";
}
.quote::after{
content: " ";
}
Expected behavior
This should be rejected / failed.
Screenshots
System
- Device: PC
- OS: Windows 10
- Browser: Brave
- Version: Latest
Additional context
No response
Issue Analytics
- State:
- Created a year ago
- Comments:6 (6 by maintainers)
Top Results From Across the Web
Learn CSS Grid by Building a Magazine - Step 64
Learn CSS Grid by Building a Magazine - Step 64 · Tell us what's happening: · Your code so far · Your browser...
Read more >hoodaddeveloper/Magazine: Learning CSS Grid by ... - GitHub
Learning CSS Grid by building a Magazine in www.freecodecamp.org - GitHub - hoodaddeveloper/Magazine: Learning CSS Grid by building a Magazine in ...
Read more >Learn CSS Grid by Building a Magazine | PLAYCODE
Learn CSS Grid by Building a Magazine. Step 1 · Step 2 · Step 3. PRO. Step 4. PRO. Step 5. PRO. Step...
Read more >CSS Grid Explained: Your Step-by-Step Guide to CSS Grid
CSS Grid is different and better. CSS Grid allows you to create a grid-based layout system, using columns and rows. You don't have...
Read more >Grids - Learn web development | MDN
CSS Grid Layout is a two-dimensional layout system for the web. It lets you lay content out in rows and columns. It has...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
So you could probably just get rid of the single quotes in the regex. e.g.
^ "$
The content selector is including the quotes and comes back as something like
" "
(for the example in the description anyway - the passing code would be something like' "'
)? If that’s the case, I think something like this would work:^' "'$