XHTML学习笔记

呵呵,发现学到目前,这是最容易入门的东东,而且也不用什么部署,写完的东东直接用IE打开就运行了,入门很轻松

  关于List:
知其所以然以便于理解和记忆:
<ol>: a Ordered(emumerated) List
<ul>: a Unordered(bulleted) List
        <li>:  a List Item in <ol> or <ul>
<dl>: a Definition List (consisting of terms paired with definitions).
        <dt>: a Definition term in <dl>
        <dd>: Definition Description of a term in <dl>

  关于Table:
<table>
<caption>
<tr>: Table Row
这里有个关于 Table Cell 的概念: 一个Table Cell 实际上就是 table 中的一个格子,如下图

Cell 1 Cell 2
Cell 3 Cell 4

table cell 有2种 <td> (Table Data) 和 <th> (Table Header). 虽然这2种几乎可以混用,但偶觉的写程序嘛还是规矩些可读性强些。下边的这个例子个人认为蛮好滴:

 

<table border="1">
	<caption><em>A test table with merged cells</em></caption>
	<tr>
 		<th rowspan="2"> </th>
 		<th colspan="2"> Average </th>
 		<th rowspan="2"> Red eyes </th>
	</tr>
	<tr>
		<th>height</th>
		<th>weight</th>
	</tr>
	<tr>
		<th>Males</th>
		<td>1.9</td>
		<td>0.003</td>
		<td>40%</td>
	</tr>
	<tr>
		<th>Females</th>
		<td>1.7</td>
		<td>0.002</td>
		<td>43%</td>
	</tr>
</table>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值