1

在我的 CSS 中,我有

@keyframes slidein
{
    0%
    {
        max-height: 0;
    }
    100%
    {
        max-height: 2000rem;
    }
}
@keyframes slideout
{
    0%
    {
        max-height: 2000rem;
    }
    100%
    {
        max-height: 0;
    }
}

我的捆绑缩小失败。为什么?

4

0 回答 0