As a beginner just starting out with React JS, I'm working on arranging cards in a medium size for my application. I came across a card design that I like and I'm seeking help to achieve something similar. Any assistance would be greatly appreciated. Thank you in advance.
https://i.sstatic.net/uVBY4.png
Currently, I'm encountering an issue where the cards are not displaying as desired. Here's what I have:
https://i.sstatic.net/jHj8H.png
Below is a snippet of my code:
render() {
return (
{ /*heading starts */ } <
div style = {
{
paddingTop: 150,
paddingLeft: 70,
color: 'white'
}
} >
< div style = {
{
position: 'absolute',
paddingLeft: 260,
color: 'black',
top: 90,
}
} >
< CardGroup >
<Card >
<Card.Img variant = "top"
src = "./image/free.png" / >
< Card.Body >
<Card.Title > Free < /Card.Title> <
Card.Text >
in to additional content.This content is a little bit longer. </Card.Text> < /
Card.Body > <
Card.Footer >
<
small className = "text-muted" > Last updated 3 mins ago < /small> < /
Card.Footer >
</div>
);
}