HTML 基础
HTML 元素
HTML 属性
HTML 标题
HTML 段落
HTML 样式
HTML 格式化
HTML 引用
HTML 注释
HTML 颜色
HTML CSS
HTML 链接
HTML 图像
HTML 表格
HTML 列表
HTML 块与内联
HTML 类
HTML Id
HTML Iframes
HTML 脚本
HTML 计算机代码
HTML 表单
HTML 表单属性
HTML 表单元素
HTML 输入类型
HTML 输入属性

Menu
×
×
正确

练习:

使用正确的CSS边框数值在表格元素上创建一个实线黑色3像素边框。

table, th, td {
  border: 3px solid black ;
}
table, th, td {
  border: solid 3px black;
}
table, th, td {
  border: solid black 3px;
}
table, th, td {
  border: solid 3px black;
}
table, th, td {
  border: 3px black solid;
}
table, th, td {
  border: black 3px solid;
}
table, th, td {
  border: 3px black solid;
}
table, th, td {
  border: 3px solid #000;
}
table, th, td {
  border: solid 3px #000;
}
table, th, td {
  border: solid #000 3px;
}
table, th, td {
  border: solid 3px #000;
}
table, th, td {
  border: 3px #000 solid;
}
table, th, td {
  border: #000 3px solid;
}
table, th, td {
  border: 3px #000 solid;
}
table, th, td {
  border: 3px solid #000000;
}
table, th, td {
  border: solid 3px #000000;
}
table, th, td {
  border: solid #000000 3px;
}
table, th, td {
  border: solid 3px #000000;
}
table, th, td {
  border: 3px #000000 solid;
}
table, th, td {
  border: #000000 3px solid;
}
table, th, td {
  border: 3px #000000 solid;
}
table, th, td {
  border: 3px solid black;
}

不正确

点击 此处 重试

正确

下一题 ❯
table, th, td {
border: 3px solid black;}
显示答案




×

重置分数?