• 2022-06-12
    border-radius:10px 15px ;则这里10px代表( )圆角半径
    A: 左上角
    B: 右下角
    C: 右上角
    D: 左下角
  • A,B

    内容

    • 0

      border-bottom-right-radius:15px;表示哪个方向的圆角() A: 左上 B: 右上 C: 左下 D: 右下

    • 1

      圆角边框border-radius属性取值为4个值时,第2个值代表什么方向:() A: 左上角 B: 左下角 C: 右上角 D: 右下角

    • 2

      智慧职教: 定义div盒子左上圆角半径为10px,其他角为直角的CSS代码() div{border-radius:10px 0 0 0; }

    • 3

      圆角边框border-radius属性额取值为三个值时候,第三个值代表的是()方向 A: 左上角 B: 右上角 C: 右下角 D: 左下角

    • 4

      有以下程序段:#include int main(){int x[ ] = {10, 20, 30}; int *px = x;printf("%d, ", ++*px); printf("%d, ", *px); px = x;printf("%d, ", (*px)++); printf("%d, ", *px); px = x;printf("%d, ", *px++); printf("%d, ", *px); px = x;printf("%d, ", *++px); printf("%d\n", *px);return 0;}程序运行后的输出结果是( ) A: 20, 10, 11, 10, 11, 10, 11, 10 B: 11, 11, 11, 12, 12, 20, 20, 20 C: 20, 10, 11, 20, 11, 12, 20, 20 D: 11, 11, 11, 12, 12, 13, 20, 20