Latest solutions
Ping-coming-soon-page with client-side data validation
#bem#sass/scssSubmitted 2 months agoNothing specific. This project was a little easier than the last one that I submitted. I received some excellent feedback on that one that I was able to incorporate into this one.
Intro component signup form with client-side validation
#smacss#sass/scssSubmitted 3 months agoTo implement client-side data validation, I attached an event listener to the submit button whose first line was
event.preventDefault();
Then, I checked all four inputs for valid data. If all data was valid, I logged a message to the console. But, in a real web app, I'm guessing that, after validating the data, I would submit a post request to the intended server using axios (or something else). Does this sound right?
Profile card component using Gulp
#bem#gulpSubmitted 4 months agoI'd love to know if there's a better way to deal with the positioning of the background images.
Recipe card using CSS Flexbox and Grid
#bem#sass/scss#smacssSubmitted 6 months agoAs I noted in the project README, I treated this project as a refresher exercise. I don't think that there's anything specific that I need help with.
Latest comments
- @harnettdSubmitted almost 2 years ago@harnettdPosted almost 2 years ago
Having seen the solution-design comparison, it seems I have some work left to do in positioning the background-image.
7-11-2023 Edit: I managed to fix my background-image issues with
.page { background-position: center top; background-repeat: no-repeat; background-size: contain; }
0