text-align in md-grid-tile (Angular Material) doesn't work

后端 未结 5 623
野趣味
野趣味 2021-02-04 01:19

text-align in Angular Material doesn\'t work.

{{video         


        
5条回答
  •  误落风尘
    2021-02-04 01:51

    You could simply put a span or div tag around your text inside md-grid-tile:

    
        
    {{ video.title }}

    and then style it:

    .text-inside-grid {
      position: absolute;
      left: 5px;
    }
    

提交回复
热议问题