HTML表格标记教程(48):CSS修饰表格(2)_XHTML教程

编辑Tag赚U币
教程Tag:暂无Tag,欢迎添加,赚取U币!

此表格的内格线为1px而外边框为3px,有了例一的基础做起来就不难了,只要修改border-width值就行了。

对table所使用的样式的代码是:border:blue solid;border-width:3 2 2 3,对td所使用的样式的代码是:border:blue solid;border-width:0 1 1 0

例三:虚线框表格


做法和例一类似,border-style从solid改为dashed。对table所使用的样式的代码是:border:black dashed;border-width:1 0 0 1,对td所使用的样式的代码是:border:black dashed;border-width:0 1 1 0

例四:点线边框表格


注重点线(dotted)的最小象素为2,对table所使用的样式的代码是 :border:green dotted ;border-width:2 0 0 2,对td所使用的样式的代码是 :border:green dotted;border-width:0 2 2 0

例五:双线边框表格


注重双线(double)的最小象素为3,对table所使用的样式的代码是:border:teal 4 dou,对td所使用的样式的代码是:border:teal 1 solid

例六:outset外框表格


来源:模板无忧//所属分类:XHTML教程/更新时间:2007-12-23
相关XHTML教程