Return the vertical alignment of a <td> element: - Javascript CSS Style Property

Javascript examples for CSS Style Property:verticalAlign

Description

Return the vertical alignment of a <td> element:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<style>
table {/*from   w  w  w . j a  v a2  s  . c  om*/
    border: 1px solid black;
    height: 100px;
}
</style>
</head>
<body>

<table>
  <tr>
    <td id="myTd" style="vertical-align:top;">Some example text</td>
  </tr>
</table>
<br>

<button type="button" onclick="myFunction()">Return vertical alignment</button>

<script>
function myFunction() {
    console.log(document.getElementById("myTd").style.verticalAlign);
}
</script>

</body>
</html>

Related Tutorials