The most challenging aspect for me was the footer layout. I'm not familiar with fixed, absolute, and relative positioning and it took a lot of trial and error.
Latest solutions
Meet Landing Page using CSS Grid and Flexbox
PSubmitted 3 months agoThe images as explained above. Any tips or examples are greatly appreciated! As well as figuring out sizing for certain images.
Testimonial Grid with CSS Grid and Flexbox
PSubmitted 5 months agoIf possible, I would like assistance on whether or not the CSS code here is acceptable. And any tips would be much appreciated.
Four Card Feature using Flexbox and CSS Grid
PSubmitted 5 months agoIf there's a better way of writing the
HTML
or if this is fine.Product Preview Card Solution with Flexbox
PSubmitted 6 months agoAny tips would be welcomed, but if I had to choose probably the
height:
in the@media
section and wondering if that's needed?FAQ Accordion Solution using HTML and CSS
PSubmitted 7 months agoI would like to ask for help on the
@media
area of my CSS and if anyone could explain how to better utilize it and if rewriting the code is good practice or better to exclude already written code.Recipe Page with HTML and CSS
PSubmitted 7 months agoI would like help with figuring out whether or not my HTML is good or if there is area for improvement.
Latest comments
- @SydsBikeSubmitted 3 months agoWhat challenges did you encounter, and how did you overcome them?P@josenegrete123Posted 3 months ago
Great work! It closely resembles the given design.
What I would've done for the footer, would have been to add a
height: 100%
to have the rest of the image reach the bottom of the page.Also, you don't need to include
position: relative
for yourprimary-footer
class.Outside of this, great work!
0 - @Hlm19966Submitted 5 months agoP@josenegrete123Posted 5 months ago
Great job on this challenge. A tip I could offer, is to try and write classes for multiple
HTML
elements so you won't have to rewrite code over and over again, instead you can detail a card for all 5 of the objects. Then 1 by 1 change any elements that need changing, instead of rewriting multipleCSS
codes over and over again.For example, you have the
card
class, so instead of rewriting thebox-shadow
,border-radius
,padding
, etc. you can just write all of that into the.card
class inCSS
.0 - P@tobaojoSubmitted 5 months agoWhat are you most proud of, and what would you do differently next time?
Using CSS grid
P@josenegrete123Posted 5 months agoGreat job, the designs are near identical.
The only thing I would personally change would be the
font-size
around the paragraph in the header. It's a really easy change though so no stress there. Amazing work!0 - @rafirachmawanSubmitted 6 months agoWhat are you most proud of, and what would you do differently next time?
learn more about responsive and improve my knowledge in the frontend field
What challenges did you encounter, and how did you overcome them?the challenges I face are a little more difficult on the layout of text images and responsiveness
What specific areas of your project would you like help with?in terms of distance and layout because I didn't get the figma design
P@josenegrete123Posted 6 months agoGreat work! For your
@media
section of the CSS, you don't need to change thefont-size
around because per the figma documents, they are all the samefont-size
, from mobile-version to desktop. Also theh1
and the firstspan
should be in a different font. But that was given in the style-guide. Theline-height
in theh1
could also be change to0
.Marked as helpful0 - @praistylesSubmitted 7 months agoP@josenegrete123Posted 7 months ago
You could have added the span html element to the instructions list to create that bold lettering on the first few words. For example:
<span>Beat the eggs</span>
to create Beat the eggs. Besides that, the rest looks good. Maybe just increase the size to better match the design.Marked as helpful0 - @ShubhamDRajSubmitted 7 months agoWhat are you most proud of, and what would you do differently next time?
Adding hover and active state animations to the buttons.
P@josenegrete123Posted 7 months agoGreat job with your work! Instead of using a grid to display the items, I would personally use a flexbox. The reason being that grids are mainly used to display data. But besides that everything here looks great!
0