首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

报表单像素边框

2012-10-28 
表格单像素边框.blueTable {background: blueborder:0}.blueTable td {background: #FFFFFF}?!DOCTYPE

表格单像素边框

.blueTable {    background: blue;    border:0;}   .blueTable td {    background: #FFFFFF;}
?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><title>定义表格边框的方法</title><style>table{ border-collapse:collapse; }td{ border:#ccc solid 1px; padding:5px; }</style></head><body><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td>今天学了个新方法,奉献给大家</td> <td>以前都是定义table的上边和左边,然后定义td的右边和下边</td> <td>没想到还有这么简便的方法,以后就用这个方法了</td> </tr> <tr> <td>标准之路</td> <td>www.aa25.cn</td> <td>欢迎大家来访问</td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr></table></body></html>

热点排行