I have a component in React using Semanti UI react
I am trying to justify a single container to the flex-end but it's not working
<Item key={item._id} id={item._id}>
<img className="image" src={item.imageURL} alt="Project Canvas"/>
<div className="content">
<div className="title">{item.title}</div>
<Item.Meta>
{new Date(item.createdDate).toUTCString()}
</Item.Meta>
<Item.Description>{item.description}</Item.Description>
<div className="footer">
<Button primary floated='right' href={item.workURL} target="_blank">
Go to application
<Icon name='right chevron' />
</Button>
<Label color='teal' tag> React </Label>
</div>
</div>
</Item>
the component that I am trying to flex-end is the < div class="footer">
My CSS
.content{
margin: 1vh !important;
display: flex !important;
flex-direction: column !important;
}
.footer{
padding-top: 2vh !important;
border-top: 1px solid rgba(0,173,181,1) !important;
justify-self: flex-end !important;
align-self: flex-end !important;
}
the justify-self and align-self doesn't work