• 2022-07-25
    以下关于Less运算符用法错误的是?
    A: @fontsize:10px; body{ font-size:@fontsize / 2rem;
    }
    B: @fontsize:10px; body{ font-size:@fontsize * 2rem;
    }
    C: @fontsize:10px; body{ font-size:@fontsize + 2rem;
    }
    D: @fontsize:10px; body{ font-size:@fontsize - 2rem;
    }