Design comparison
Solution retrospective
I still don't know how to put 2 background circle to right place and have nice responsive. I will appriciate if you can help me on that
Community feedback
- @JimmyHoang296Posted about 3 years ago
thank you so much for your advice. I still learn to use github properly and your pull is mean so much.
0 - @YazdunPosted about 3 years ago
Hello š Here I have some suggestions for you
-
Use
width:100%
and then givemax-width:350px
, so when element reaches350px
it will stop growing but under350px
it always takes100%
of available width which will make your element looks better on smaller screen and in this specific solution, it makesmedia query
completely unnecessary ! -
Give
font-family
and background color tobody
tag. -
It's better to use
rem
orem
instead ofpx
for fonts. -
Approach mobile first, It will make your life easier on more complex designs.
-
Put your html content inside a single
main
tag for each page, It will fix your ACCESSIBILITY issues. eachhtml
page should have onemain
and onelevel one heading
-
for your background issue I used two separate
position:absolute
image tags and styled it in your css
ā Also I opened a pull request to your github repository which will fix your background issue and some other fixes to your code.
I Hope this was helpful
0 -
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