Latest solutions
Latest comments
- @FRmero@liampc
Hello!
I also had a hard time with that part, what I did is make use of grid instead of flexbox for the reviews container, and add a max-height to the children-cards.
Hope this helps!
- @ramonrp@liampc
Hello, nice work with this!
- I just noticed that you used another div for the pictures in the box, I think using img tag is sufficient.
- the grid is good but you can also use 'grid-template-areas' and assign 'grid-area' for each of the children, I think it is neater.
- for the 'grid-template-columns/rows' you can also use 'repeat(3, 1fr)'
Have a good day!
- @AngelBLK@liampc
Hello!
Here are some of my suggestions:
-
add a container div that will hold all the elements and set a max-width into it so that the elements won't spill outside of that area
-
try to use :root Selector, for custom properties like colors and fonts https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
-
try to use css grid or flex, it will help for responsive design, search for CSS tricks for info
-
I just learned this recently here, you can use the background property and add multiple images plus the white background instead of adding the image itself in the html. https://www.w3schools.com/css/css3_backgrounds.asp
Happy coding!
-