Latest solutions
Latest comments
- @YouLackHopeSubmitted over 2 years ago@nott7Posted over 2 years ago
Hi!
On
<div class="information">
you can usedisplay: flex;
flex-direction:column;
andjustify-content:center;
for center the div andborder-radius: 0 10px 10px 0
On the image you can use
border-radius: 10px 0 0 10px;
For the button you can delete
position:absolute;
and all the margin and also usefont-family: inherit;
On the price section you can use
display: flex;
justify-content:space-between;
andalign-items: center;
, done this on the childrens you can delete float.You can delete
align-items: center;
and height onmain
.I may have forgotten or wrong something , if you still need you can also write to me!
Marked as helpful0