gpt4 book ai didi

html - 需要从 Angular 垫分页器中删除或自定义分页箭头

转载 作者:太空宇宙 更新时间:2023-11-03 20:26:34 25 4
gpt4 key购买 nike

我实际上需要删除 angular mat-paginator 上的箭头,因为我需要自定义设计。如果可以更改这些箭头的样式,也可以解决。 mat-paginator 的链接如下。

https://material.angular.io/components/paginator/overview

The arrows which i need to remove are shown in following picture.

提前致谢。

最佳答案

请尝试以下 CSS 代码。

  .mat-paginator-navigation-previous {
display: none !important;
}

.mat-paginator-navigation-next {
display: none !important;
}

(或)

  .mat-paginator-navigation-previous {
opacity: 0 !important;
width: 0;
height: 0;
}

.mat-paginator-navigation-next {
opacity: 0 !important;
width: 0;
height: 0;
}

关于html - 需要从 Angular 垫分页器中删除或自定义分页箭头,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52811409/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com