* ****************** Use js to add a border for td ************* ********************
The css design is as follows:
. Td {
Border-width: 1px 1px 1px 1px;
Border-style: solid;
Border-color: 8DB1A1;
}
Assume that a td is defined as follows:
<Td width = "15%" class = "tdtitle" nowrap id = "name">
<S: property value = "getText (name)"/> & nbsp;
</Td>
You can add a border for td as follows
Document. getElementById ('name'). className = 'td ';
**************************************** ***********************************
******************* Visibility and display attributes of the application *************** *******
The visibility attribute is hidden, but tr or td still occupies the position during display. visibility: hidden (hidden), visible (Display)
The display attribute is used to hide tr or td but does not occupy the position of the display. display: block (display) and none (hide)