Latest solutions
Latest comments
- @Mut1s0Submitted over 1 year ago@sircarloschavesPosted over 1 year ago
Hi brother!
If you pay attention, you will notice that the internal
border-radius
is different from the externalborder-radius
, in different layouts you will also notice this, that if you apply the sameborder-radius
that is in the parent to the child, it will look different even though it's the same number.There is a 'hack' to smooth out this difference, which is as follows: You will do a calculation, which in this case will be the external
border-radius
- thepadding
or the space between the external border and the internal border.If you want to know more, read this article that talks about it: Perfect nested border radius in CSS
Marked as helpful0 - @CheosphereSubmitted about 2 years ago@sircarloschavesPosted over 1 year ago
Hey, how do I animate a button with a gradient like you did?
1 - @rzho17Submitted over 1 year ago@sircarloschavesPosted over 1 year ago
What's up friend, how's it going?
Let's go:
- For the testimonial containers you could have used
display: grid
, you would dogrid-template-columns: 1fr
in the mobile layout, and when you switched to the desktop you would dogrid-template-columns: repeat(3 , 1fr)
; - I think it's interesting that you don't specify a size for the container, but rather let
padding-block
define the size of your container, but if you found the responsiveness the way you did it best, and it worked, everything is fine. But in general you don't want to specify a fixed size for your designs.
0 - For the testimonial containers you could have used
- @eniskrtSubmitted over 1 year ago@sircarloschavesPosted over 1 year ago
Hello, when the layout is reduced, the image has a bugged proportion. Screenshot
You could use an
object-fit: cover
on the image that would solve the problem.Marked as helpful0 - @OusD1213Submitted over 1 year ago@sircarloschavesPosted over 1 year ago
Hello, when the layout is on mobile, your card sticks to the edge of the screen. You can easily solve this by adding
padding
to thebody
.0 - @erenymoSubmitted over 1 year ago@sircarloschavesPosted over 1 year ago
Hello, here in my resolution (1920x1080) the
input
is pasted in the information below. Here's the screenshot: Screenshot1