Would love some feedback on this.
Tomasz
@CurseTommyAll comments
- @DrougnovSubmitted about 2 years ago@CurseTommyPosted about 2 years ago
Hi @Drougnov 👋, good job completing this challenge! 🥳
Your side and code looks perfect, good hover transition, and awesome hamburger menu buttons.
Overall good job, and keep it up 😁👋
1 - @NabilWasirSubmitted about 2 years ago
Don't forget to tell me if something is wrong in my code or if i can improve my code and give your opinion/feedback.
@CurseTommyPosted about 2 years ago** Hi @NabilWasir 👋, good job completing this challenge! 🥳**
Code looks good to me.
I give you two tips how to improve your code for future:
1.Use
vh
andvw
instead ofpx
as comes towidth:
andheight:
of the tag --> More aboutvh
andvw
in Webflow2.Use semantic HTML structure --> Semantic HTML
Good luck in future, enjoy coding 😁👋
0 - @iulias17Submitted about 2 years ago
Any feedback is highly appreciated! I feel like the HTML and CSS is very messy so I'll try to work more on making it look cleaner. I had a hard time with the overlay icon. It looks ok, but I wonder if there is an easier way to do it!
Thanks!
@CurseTommyPosted about 2 years agoHi @iulias17 👋, good job completing this challenge! 🥳
1.First you need using alternate text -->
alt=''
in your<img>
tag. It helps when your illustration will not load on the side. Instead of it, will appear your text, mostly it's just description what does image shows.2.Second, use
rem
or%
rather thatpx
.3.I saw you're using
hsl
color code with is very good. Because you can easily manipulate color shade.😄4.When you're styling with
position: absolute;
there is no reason to use bothtop: 0;
,bottom: 0;
, same situation withleft: 0;
andright: 0;
. Simply use onlytop: 0;
,left: 0;
. Overlay is made good, but you could addtransition-duration: 600ms;
for better look.Good luck in future, enjoy coding 😁👋
Marked as helpful0 - @GP2023JSubmitted about 2 years ago
1- I did not find much difficulty.
2- Perhaps in the media query.
3- I would like to know if there would be another way to better order my structure.
@CurseTommyPosted about 2 years agoHi!
I recognize one think that could have been done better, it's section class names, you must be more specific in terms of class names. Because
one
two
three
doesn't mean much, take a look as a person who trying to review code, how they can know what this name means.Also order is done good Another thing is responsive design, if you want to make it easier try to use units like :
rem, em
vh, vw
Those are reacting to side width and height
And you can use
clamp()
as well, more about --> clamp()Good luck in future. Keep it up 😁
0 - @anastasis01Submitted about 2 years ago
Should i use Bootstrap or i should write CSS completely on my own?
@CurseTommyPosted about 2 years agoHi!
Responding to your question, you should write CSS or SASS then using Bootstrap. Bootstrap will not teach you CSS, it's just unnecessary shortcut.
For example by using CSS libraries you're just adding classes but by writing your own CSS you adjust them and have a great time messing around them.
Good luck in future :)
Marked as helpful1