Projeto muito interessante, use o grid e aprimorei meus conhcecimentos em responsividade!! por favor me falem o que acharam? .
Ronaldo
@marckesinAll comments
- @CleidianaaSubmitted over 2 years ago@marckesinPosted over 2 years ago
Bom trabalho. Para melhorar você poderia adicionar aos estilos do seu botão:
button{ cursor: point; transition: all 0.3s; }
button:hover { background-color: hsla(71, 73%, 54%, 0.795); }
1 - @SalehAbuhusseinSubmitted over 2 years ago
I didn't find problems in general But What I would like to do in this challenge is to make the design as pixel perfect as possible (I am don't have pro). I used Pixel Perfect extension on Chrome but the problem I faced is that the Design Preview is 1440x1056 and the Site on my device is 1200 or less and the height is the height of the screen of the laptop I use which is less than 1056 for sure. How can I compare the Preview Design with my design if the preview layer doesn't land properly on my Solution. Sorry for the long talk 😥 but I am very eager and curios to make the challenge Pixel Perfect.
@marckesinPosted over 2 years agoHello Saleh. You can resize the width of your browser with: CTRL- or CTRL+ to match the size you want.
0 - @chloeafpSubmitted over 2 years ago
Hello,
I think I've done pretty well with the challenge. But I am always open to any feedback! :)
So, do you have any feedback on the HTML or CSS? Thank you!
@marckesinPosted over 2 years agoHi Chloe. Your solution is pretty good on desktop mode but it doesn't have a mobile mode. You could implement media queries to solve that.
1 - @kamrulsaadSubmitted over 2 years ago
Hey, this is my first big project, I am kind of lacking in making this page responsive. I would like to submit now for I want to know how others have done it by checking their solution. Please leave any suggestions that might help me finish this project in a better way.
@marckesinPosted over 2 years agoI've just finished this challenge and used Bootstrap5 as well. Feel free to take a look at my solution to get some insights.
Marked as helpful0 - @rebekahshaw92Submitted over 2 years ago
I have a strange gap/margin down the right hand side, when I added overflow:hidden it seems to mess up my menu.
@marckesinPosted over 2 years agoHi Rebekah. I've just finished this challenge and used Bootstrap5 as you did. Feel free to take a look at my solution to get some insights.
1 - @Mick-2097Submitted over 2 years ago
I could spend the next 3 days playing with the box shadow and not get it right .!?
@marckesinPosted over 2 years agoCheck this out: https://getcssscan.com/css-box-shadow-examples
0 - @shan1ySubmitted over 2 years ago
Feedback is welcomed :)
@marckesinPosted over 2 years agoHi Shan1y. Great work. When the email is invalid, the message "Please provide a valid email" is very close to the attribuition div.
1 - @cholis04Submitted over 2 years ago
- @GrzywNSubmitted almost 3 years ago
Any feedback is welcome here!
@marckesinPosted almost 3 years agoHi Karol. Nice job. It would be great if your "button" and "cancel order" had a cursor: point.
Marked as helpful0 - @ThiagoJyum5Submitted almost 3 years ago
how can i put an image together with a base color in the background
@marckesinPosted almost 3 years agoI did this:
.container { height: 100vh; background-image: url("../images/pattern-background-desktop.svg"); background-repeat: no-repeat; background-size: contain; position: relative; }
.container::after { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-color: hsl(225, 100%, 94%); z-index: -1; }
The container class is my background.
Marked as helpful0