A: width:15;
B: width:60px;
C: height:100%;
D: height:100;
举一反三
- 以下关于width属性和height属性语法格式正确的是()。 A: Awidth:15; B: Bwidth:60px; C: Cheight:100%; D: Dheight:100;
- CSS盒子模型中表示盒子边框的属性为( ),表示盒宽度的属性为( ) A: border width B: border height C: height width D: width height
- 既可以通过CSS的width和height属性,也可通过标签自身的width和height属性设置其尺寸。
- 为了保证网页中的图像等比例缩放,应当()。 A: width和height属性要同时指定 B: 只指定width和height属性中的一个 C: width和height属性都不指定 D: 以上均可
- 下列哪种设置可以使div的宽度自适应?( ) A: width:1024px; B: height:100%; C: height:1024px; D: width:100%;
内容
- 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];