Md Ajmal Shadab
@mdajmalshadabAll comments
- @alias01@mdajmalshadab
Your result looks pretty good, just try aligning all 3 buttons in your card. Rest is perfectly fine. Go ahead and take a new challenge.
Marked as helpful - @CassiuSRSA@mdajmalshadab
Hey nice work, you just need to add some background color to your page body so that it could match with the challenge template. Keep coding!😊
Marked as helpful - @J0shcodes@mdajmalshadab
hey you have done a great job, I liked the responsiveness of the page. Go head and take a new challenge. Keep coding!
- @Nabil19911@mdajmalshadab
Hey, nice work, everything is fine except the fact that the card is jumping a bit while changing the screen size and try increasing the length of the button shadow and add hovering color change on the button if possible. Happy Coding!
Marked as helpful - @AndreiM987@mdajmalshadab
Hey nice work on the card! For the background you can do....
Add following CSS property inside your page body/main
background-image: url("url-1"), url("url-2)
The two image urls separated by comma Next you can position it accordingly also seperated by comma for example....background-position: left 10px top 10px, left 30px top 30px;
These numerical values are just for example, tweek it as it best fits. Keep coding!
- @adeyinkaezra123@mdajmalshadab
Hey you have done it nicely, only you just need to reduce some bottom padding of the card, then it'll match with the given challenge. Keep coding ✌️
Marked as helpful - @alan-ssantos@mdajmalshadab
You have done it perfectly! I liked it quite much. Keep doing new challenges 😊
- @nerdgeek007@mdajmalshadab
Well I guess, you submitted your solution in wrong challenge, btw try changing the color of car names to white in your card. And also try aligning all three buttons on same level, rest is pretty good. Keep coding✌️
- @SakshiSawant@mdajmalshadab
Hey nice work! Just reduce left/right padding inside each button and add little margin to the top and bottom of the button, rest is good I guess. Keep coding!
- @darkabysm@mdajmalshadab
Hey nice work, you need to change the color of the button in hovering state by using
:hover
with your button class in CSS. You can also add right padding to individual cards to match your design to the given challenge.Keep Coding!
Marked as helpful - @wppaing@mdajmalshadab
Hey, that's a very good work for the first challenge, one thing I would like to pin point here is that you did not used the background image (wavy curve) that is shown in the original design.
Keep coding! Keep doing new challenges!😊
- @SakshiSawant@mdajmalshadab
Another way that you can use is what I did while doing this challenge.....
I created a parent class 'bg' and its two child classes 'bg-1` and 'bg-2', following are the CSS property I used for positioning my two background images.
.bg { margin: 0; display: flex; justify-content: center; position: relative; width: 100%; height: 100%; z-index: -1; overflow: hidden; }
.bg-img-1 { position: absolute; right: 52%; bottom: 40%; }
.bg-img-2 { position: absolute; left: 50%; top: 50%; }
if you have any doubt you can refer to my github code
- @SakshiSawant@mdajmalshadab
Hey, nice work for the card section, for background part you can use the following CSS property in you main/body element
background-image: url("image-url-1"), url("image-url-2");
and then accordingly position your background usingbackground-position: left -80px top 50px, left -570px top -300px;
NOTE: These positions are random and just for example, you can position your two background images by separating it with comma.Marked as helpful - @DamnItAzriel@mdajmalshadab
That's very good work! keep doing new challenges :)
Marked as helpful - @Pancha99x@mdajmalshadab
Hey, really good work for the first challenge. Keep coding!
Marked as helpful - @vantevie@mdajmalshadab
Nice Work! Try using
display: flex
in the parent container of your image and card body, it'll automatically divide equal space for your image and card body. - @Heathallred4@mdajmalshadab
Hey, that's really good one. I think you just forgot to change the color of headings and paragraphs, change it to dark blue and it'll be same as original template. Keep Coding!
Marked as helpful - @ereljapco@mdajmalshadab
Hey Great Work! Regarding those breakpoints I would recommend using
background-image
CSS property inside yourmain
container, and then accordingly position your background usingbackground-position
property to match the desired layout.