• 2022-06-18
    以下关于width属性和height属性语法格式正确的是()。
    A: width:15;
    B: width:60px;
    C: height:100%;
    D: height:100;
  • B,C

    内容

    • 0

      既可以通过CSS的width 和height属性,也可通过<textarea>标签自身的width 和height属性设置其尺寸。 A: 正确 B: 错误

    • 1

      width和height是 标签的可选属性

    • 2

      【多选题】已知代码如下 class Rectangle { private int width, height; public void setSize(int width, int height) { this.width = width; this.height = height; } } 下面哪些代码重载 setSize 方法 (10.0分) A. protected void setSize(int width, int height) { this(width, height) } B. public void setSize(int width, float height) { this.width = width; this.height = (int)height; } C. protected void setSize(int width) { this.width = width; } D. public void setSize(int height, int width) { this.width = width; this.height = height; }

    • 3

      中国大学MOOC: 既可以通过CSS的width 和height属性,也可通过<textarea>标签自身的width 和height属性设置其尺寸。

    • 4

      ​若想用width和height表示屏幕的宽度和高度(单位:像素,整数),在C++中使用下列哪个语句来声明?‎ A: int width, height; B: double width, height; C: char width, height; D: char width[40], height[40];