Change the cellPadding and cellSpacing of a table : Table « HTML « JavaScript DHTML






Change the cellPadding and cellSpacing of a table

 

<html>
<head>
<script type="text/javascript">
function padding(){
    document.getElementById('myTable').cellPadding="25"
}
function spacing(){
    document.getElementById('myTable').cellSpacing="25"
}
</script>
</head>
<body>

<table id="myTable" border="1">
    <tr>
        <td>a</td>
        <td>b</td>
    </tr>
    <tr>
        <td>c</td>
        <td>d</td>
    </tr>
</table>
<form>
    <input type="button" onclick="padding()" value="Change Cellpadding">
    <input type="button" onclick="spacing()" value="Change Cellspacing">
</form>
</body>

</html>



           
         
  








Related examples in the same category

1.Tabular data in Javascript with hyper link
2.Change the width of a table border
3.Specify frames of a table
4.Change table row height
5.Specify rules for a table
6.Create table caption
7.Deleting table rows
8.Adding table rows
9.Align the cell content in a table row
10.Change the cell content in a table row
11.Vertical align the cell content in a table row
12.Align the cell content in a single cell
13.Vertical align the cell content in a single cell
14.Adding cells to a table row
15.Change the colspan of a table row
16.Insert table row: the uniqueID Property
17.Using the cloneNode Method
18.Cycling Through Table frame Property Values
19.Replacing Table Cell Content
20.Inserting/Removing Row Elements
21.Modifying Table Columns
22.Accessing userProfile Data
23.Cycling Through Table rows Property Values
24.Using the Data Binding record Number Property
25.Using the offsetParent Property
26.Transforming JavaScript Data into HTML Tables
27.Transforming JavaScript Data into HTML Tables with HyperLink
28.Create a table
29.Change table border width and cell padding