infodev
infodev

Reputation: 5235

Angular Material mat-card width as inner text width

Card's width is always 100%.

Demo

I would adapt mat-card width to fit text width ( with some padding )

<mat-card>Simple card</mat-card>

Upvotes: 4

Views: 14831

Answers (2)

seyid yagmur
seyid yagmur

Reputation: 1722

You should apply to mat-card the css I wrote below.

mat-card{
    width: fit-content;
}

Upvotes: 9

Vlăduț Coman
Vlăduț Coman

Reputation: 56

You can simply write some css for mat-card and set the width property as you wish. As example:

mat-card {
  width: 50%;
}

Upvotes: 2

Related Questions