{{ article.description }}
I can\'t seem to wrap my head around having this container in an md card.
In my material cards, I have this:
&
Fixed it using the following css and html:
md-card-title > span {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.5);
position: absolute;
margin-top: -81px;
margin-left: -24px;
font-size: 20px;
padding: 10px;
}
{{ article.title }}
{{ article.description }}
Using
gives some odd spacing issues. Not sure if this is a bug or not.