我有一个 MudBlazor 表,在调整窗口大小时它会不断执行此操作:
来自: 在此输入图片描述
致: 在此输入图片描述
我的代码:
<MudCard Elevation="0">
<MudCardContent>
<MudTable Style="background-color: #9d1213" Elevation="22" Class="py-8 px-10" Items="@rewards" Virtualize="true" Hover="true" SortLabel="Sort By">
<HeaderContent>
<MudTh Class="text-white"><MudTableSortLabel
SortBy="new Func<Reward, object>(x=>x.Name)">Reward</MudTableSortLabel></MudTh>
<MudTh Class="text-white"><MudTableSortLabel Enabled="@enabled"
SortBy="new Func<Reward, object>(x=>x.HasBeenUsed)">Used ?</MudTableSortLabel></MudTh>
<MudTh Class="text-white"><MudTableSortLabel InitialDirection="SortDirection.Ascending"
SortBy="new Func<Reward, object>(x=>x.ExpiresOn)">Expires on</MudTableSortLabel></MudTh>
</HeaderContent>
<RowTemplate>
<MudTd Class="text-white" DataLabel="Name">@context.Name</MudTd>
<MudTd Class="text-white" DataLabel="HasBeenUsed">@(context.HasBeenUsed == true ? "Yes" : "No")</MudTd>
<MudTd Class="text-white" DataLabel="ExpiresOn">
@context.ExpiresOn.ToString("d", CultureInfo.CreateSpecificCulture("en-US"))
</MudTd>
</RowTemplate>
<PagerContent>
<MudTablePager Class="text-white" PageSizeOptions="new int[] { 10, 25, 50, 100 }" />
</PagerContent>
</MudTable>
</MudCardContent>
</MudCard>
我对 CSS 的了解不够,或者不知道如何不让它做到这一点,我已经尝试了很多事情,从 MudBlazor 网站到 CSS 更改,但它没有做任何事情