Latest solutions
Responsive Contact Form
Submitted 9 months agoI would like to work more on JS DOM and be able to go into more complex JS and JS DOM to be able to build web applications.
Latest comments
- @javiIT10Submitted 8 months ago
- P@MichaHuhnSubmitted 8 months agoWhat are you most proud of, and what would you do differently next time?
- I made the card responsive by using a media query and by using fluid design. The card's width automatically adapts to the viewport on mobile screen sizes.
- I used semantic HTML, e.g.
nav
,ul
. - I implemented proper
hover
andfocus-visible
states. - I also used the
q
tag to create the quote.
First, I centered the card with this code:
display: grid; place-content: center;
But that caused the card to shrink. However, the card should have a bigger width on desktop (see mockup). That's why I only centered the card vertically with this code:
display: grid; align-items: center;
and applied a
What specific areas of your project would you like help with?max-width-wrapper
class to the card to center it horizontally and to make it responsive. This technique is explained in this YouTube video.I think I found a good approach to center the card and to make it responsive (see above). However, let me know if you know a better solution.
- @choieunsohSubmitted about 1 year ago@Kyl67899Posted 8 months ago
Nice website. Very responsive. Accessible for other users
0 - P@brodiewebdtSubmitted 10 months ago
- @Ogo1ASubmitted 11 months agoWhat are you most proud of, and what would you do differently next time?
I was able to come up with a web page
What challenges did you encounter, and how did you overcome them?CSS styling
What specific areas of your project would you like help with?CSS especially sizing of things.
@Kyl67899Posted 10 months agoLayout is good. Make the background border-box: box-sizing to get the full page to be 100% and not taken up only less than 100% like the background color does. Overall the website is great. The page is not very responsive try to use media query to help with making the site responsive.
0 - @Kyl67899Submitted about 1 year ago@Kyl67899Posted about 1 year ago
I used semantic HTML for this react.js project.
The website is very responsive for tablets, desktops, and mobile phones.
The code is reusable, well-structured with comments to further understand the logic, and is very user friendly for reusability.
I would appreciate any feedback from you on this project
0