Design comparison
Solution retrospective
Hello there. I finished this late at night. The only thing Im irritated of is the footnote being at the top left corner. In my local screen it is looking right but in Chrome it looks unstyled. Anyway its late and I didnt want to bother.
Community feedback
- @Bader-IdrisPosted over 1 year ago
some advice on fixing your prices.
you can put both
prices
into a div and give that divdisplay: relative
, and its childrenposition: absolute;
, then you can modify top and left of these prices, especially the crossed one. I hope it's helpful.to Summarize:
div.parent { display: relative; } div.parent .children { display: absolute; } div.parent :last-child { left: 30px ; }
1@frkanyilmaz2Posted over 1 year ago@Bader-Idris I tried this but it messed up. I'll try again in a fresh project. Thanks for the info.
1@Bader-IdrisPosted over 1 year ago@frkanyilmaz2 yeah, it's a bit confusing at first, since we use block and inline-block displaying, but when we handle them well, it'll be a lovely solution👍, have a good one
1
Please log in to post a comment
Log in with GitHubJoin 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