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

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

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

{{video         


        
5条回答
  •  被撕碎了的回忆
    2021-02-04 02:04

    for those who have problems getting this example to work in angular2 you might need to add the ::ng-deep selector to the css for the figure

    
        {{ video.title }}
    
    

    css

     .video-title > ::ng-deep figure {
         justify-content: flex-start !important;
     }
    

    *updated /deep/ to ::ng-deep because /deep/ was deprecated

提交回复
热议问题