• 2022-06-19
    想要将一个行内元素em设置高度和宽度分别为20px,50px,正确的代码是:
    A: em{ width:50px; height:20px; overflow:true; display:block; }
    B: em{ width:50px; height:20px; display:true; }
    C: em{ width:50px; height:20px; }
    D: em{ width:50px; height:20px; display:block; }