Latest solutions
Agency landing page with react, tailwind-CSS and farmer-motion
#react#tailwind-css#framer-motionSubmitted about 1 month agoMulti-step form with react , tailwind css , react router, zod
#framer-motion#react#tailwind-css#zod#react-routerSubmitted 3 months agoWhen I was developing this project my svg for the background was working fine but after I deployed it it gave me a 404 error. I couldn't figure out why. I am using Tailwind CSS and I also safe-listed them so it's render first but don't know what to do now. If anybody has tips tell me
Article preview component with JavaScript
#pure-cssSubmitted 4 months agoI couldn't show the share button with my tooltip in my mobile version can anyone tell me how you did it?
Latest comments
- @ZxjklpSubmitted 3 months ago
- @stephany247Submitted 3 months agoWhat are you most proud of, and what would you do differently next time?
I’m most proud of successfully using JavaScript to dynamically update the DOM based on fetched data. This project allowed me to enhance user interactions with features like time-based data updates and button styling.
Next time, I’d focus on making my code more modular and avoid repeating card elements to improve maintainability.
What challenges did you encounter, and how did you overcome them?A key challenge was ensuring the correct data displayed for each timeframe. I resolved this by mapping the timeframe values and using forEach() to update the cards.
Another challenge was handling asynchronous data fetching. I used the DOMContentLoaded event to ensure the data was fetched before rendering the UI.
What specific areas of your project would you like help with?I’d appreciate any feedback on how to improve the project.
- P@gianmromeroSubmitted 4 months agoWhat are you most proud of, and what would you do differently next time?
Form validation with JS, I will use validator.js instead.
What challenges did you encounter, and how did you overcome them?How use JavaScript to make responsive success messages and form validation.
What specific areas of your project would you like help with?Even if in this project doesn't ask for toggle on dismiss button I like to learn how to do it with Vanilla JS.
@apu2304Posted 4 months agoNice code! I like it. But why did you put your input background color error color?
0 - @TrEv0rRrRrSubmitted 4 months agoWhat specific areas of your project would you like help with?
I don't know why when the divs apppears or disappears the main moves in the mobile version.
- @snigdha-sukunSubmitted 4 months agoWhat are you most proud of, and what would you do differently next time?
I am proud of learning how to use
background-image
:
What challenges did you encounter, and how did you overcome them?.testimonial:nth-child(1) { background-image: url("./images/bg-pattern-quotation.svg"); background-position: top 0px right 2em; background-repeat: no-repeat; }
I faced some difficulty with spacing & positioning the testimonials to the center in the desktop view. But I managed it by creating 2 extra columns on each side to position the elements in the center.
What specific areas of your project would you like help with?@media (min-width: 376px) { main { display: grid; grid-template-columns: 0.7fr repeat(4, 1fr) 0.7fr; grid-template-rows: repeat(2, 1fr); } .testimonial:nth-child(1) { grid-column: 2 / 4; } .testimonial:nth-child(2) { grid-column-start: 4; } .testimonial:nth-child(3) { grid-column-start: 2; } .testimonial:nth-child(4) { grid-column: 3 / 5; } .testimonial:nth-child(5) { grid-column-start: 5; grid-row: 1 / 3; } }
Responsive CSS techniques
- @DeidalsSubmitted 4 months agoWhat are you most proud of, and what would you do differently next time?
I proud i finally using css grid
@apu2304Posted 4 months agoThe code is very structured, and I like it. But you could have used an img tag instead of coping the full SVG.
0