Latest comments
- @1991facundo@HenriqueDummer
Hello facundo, how are you?
I think i have a solution for your problem A.
You can simply apply "overflor: hidden " in your container, this hides anything that cross the limits of the element you're applyng it to
Marked as helpful - @criszmendoza@HenriqueDummer
Hello Cristian, nice work :)
I noticed that each of you card has a "border-radius" property, but if you take a look in the design it should be an overall "border-radius".
So instead of apply the "border-radius" in all of your cards you could do something like this in your CSS:
.card-1 { border-top-left-radius : 8px;
border-bottom-left-radius : 8px; }.card-3 { border-top-right-radius : 8px;
border-bottom-right-radius : 8px; }Then your "border-radius" will be aplied only in the edges
Hope it helps you :D