border

English [ˈbɔ:də(r)] US [ˈbɔ:rdə(r)]

n. bordure; bordure d'emballage

vt.& vi. le côté de...

vt. Le long du côté de..., autour de..., bordant...

vi Approximativement, adjacent à

Troisième personne du singulier : frontières Pluriel : frontières Participe présent : bordant Passé. temps : bordé Participe passé : bordé

espacement

Anglais [ˈspeɪsɪŋ] US [ˈspesɪŋ]

n.

propriété javascript borderSpacing syntaxe

Fonction : Définissez la distance séparant les bordures des cellules

Syntaxe : Object.style.borderSpacing=length,length

propriété javascript borderSpacing exemple

<html>
<head>
<script type="text/javascript">
function changeBorderSpacing()
{
document.getElementById('myTable').style.borderSpacing="10px"
}
</script>
</head>
<body>

<table border="1" id="myTable">
  <tr>
    <td>100</td>
    <td>200</td>
  </tr>
  <tr>
    <td>300</td>
    <td>400</td>
  </tr>
</table>

<input type="button" onclick="changeBorderSpacing()" 
value="Change border spacing">

</body>
</html>

Exécuter l'instance »

Cliquez sur le bouton « Exécuter l'instance » pour afficher l'instance en ligne