I'm a beginner and just started to build applications with react js. I need to arrange the card and make it in a medium size. I want cards something like this below, Any help would be appreciated. Thanks in advance
But I'm getting like this I'm stuck here.
This is 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>
);
}