若要使表格的行高为16pt,以下方法中,正确的是( )。
A: <table border="1" line-height=”16pt">…</table>
B: <table border="1" style="line-height:16">…</table>
C: <table border="1" style="line-height:16pt">…</table>
D: <table border="1" style="height:16pt">…</table>
举一反三
- 设置表格的宽度为600的HTML代码是( )。 A: <table height="500" width="600"></table> B: <table vspace="600" hspace="500"></table> C: <table height="600" width="500"></table> D: <table vspacet="500" hspace="600"></table>
- 设置单元格填充为0的HTML代码 ( )。 A: <table cellspacing=0> B: <table cellspacing="0"> C: <table cellpadding="0"> D: <table cellpadding=0>
- 以下代码输出的结果为( )<?php$attr = array("0"=>"aa","1"=>"bb","2"=>"cc");echo $attr[1];?>? 输出为空|aa|会报错!|bb
- 对于HTML页面,在a开始标签中匹配href属性内容的最合理的正则表达式是什么?假设href属性内容使用双引号包围,需要将匹配内容放到第一个匹配组中。 A: <a href="([^"]*)"[^>*]> B: (?is)<as[^>*]href="([^"]*)"[^>*]> C: <as[^>*]href="([^"]*)"[^>*]> D: <as[^>*]href="([^"]*)">
- 在HTML页面中,调用外部样式表的正确格式是 A: <link rel="stylesheet" type="text/css" href="外部样式表地址" /> B: <style rel="stylesheet" type="text/css" link="外部样式表地址" /> C: <style rel="stylesheet" type="text/css" href="外部样式表地址" /> D: <link rel="stylesheet" type="text/css" style="外部样式表地址" />