Skip to content
  • Unlock Pro
  • Log in with GitHub
Solution
Submitted about 1 year ago

Recipe Page pure css, css table and styled list markers

P
Krzysztof Krawczyński•80
@cravsky
A solution to the Recipe page challenge
View live sitePreview (opens in new tab)View codeCode (opens in new tab)

Solution retrospective


What are you most proud of, and what would you do differently next time?

I am happy that I used pseudo-classes and pseudo-elements extensively.

What challenges did you encounter, and how did you overcome them?

The most challenging part was styling list markers

ol li {
    position: relative;
    padding-left: 40px;
}

ol li::before {
    content: counter(list-counter) '.';
    counter-increment: list-counter;
    display: inline-block;
    width: var(--spacing-200);
    margin-right: var(--spacing-200);
    font-weight: bold;
    color: var(--custom-marker-color, #854632);
    font-size: var(--text-preset-4);
    position: absolute;
    left: var(--spacing-100);
}
What specific areas of your project would you like help with?

How did you cope with list markers? What is better approach for nutrition table? CSS table or flexbox?

Code
Loading...

Please log in to post a comment

Log in with GitHub

Community feedback

No feedback yet. Be the first to give feedback on Krzysztof Krawczyński's solution.

Join our Discord community

Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!

Join our Discord

Stay up to datewith new challenges, featured solutions, selected articles, and our latest news

Frontend Mentor

  • Unlock Pro
  • Contact us
  • FAQs
  • Become a partner
  • Use cases

Explore

  • Learning paths
  • Challenges
  • Solutions
  • Articles

Community

  • Discord
  • Guidelines

For companies

  • Hire developers
  • Train developers
© Frontend Mentor 2019 - 2025
  • Terms
  • Cookie Policy
  • Privacy Policy
  • License