html设置表格的上边框不显示

html-css017

html设置表格的上边框不显示,第1张

<style type="text/css">

<!--

.aaa {

border-right-width: 1px

border-bottom-width: 1px

border-left-width: 1px

border-top-style: none

border-right-style: solid

border-bottom-style: solid

border-left-style: solid

border-right-color: #666666

border-bottom-color: #666666

border-left-color: #666666

text-align: center

}

-->

</style>

<table width="100" border="0" cellpadding="0" cellspacing="0">

<tr>

<td class="aaa">表格内容</td>

</tr>

</table>

border:soild 5px #3300FF

改成

border:5px #3300FF soild

如果还不行的话,可能是你浏览器问题,别用IE8或者7

不需要这种设置,直接用css就行了,如<table border="1" style="border-collapse:collapse">。

语法:

border-collapse : separate |

collapse

取值:

separate

: 

默认值。边框独立(标准HTML)

collapse

: 

相邻边被合并

说明:

设置或检索表格的行和单元格的边是合并在一起还是按照标准的HTML样式分开。