JS implements a method to control the text alignment of table rows

  • 2020-05-24 05:11:28
  • OfStack

This article demonstrates an example of how JS can control the text alignment of table rows. Share with you for your reference. The details are as follows:

The JS code below controls whether the entire line of text in the table is aligned to the left or right


<!DOCTYPE html>
<html>
<head>
<script>
function leftAlign()
{
document.getElementById('header').align="left";
}
</script>
</head>
<body>
<table width="100%" border="1">
<tr id="header">
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr>
<td>Peter</td>
<td>Griffin</td>
</tr>
</table>
<br>
<input type="button" onclick="leftAlign()" value="Left-align table row"/>
<p><b>Note:</b> This example does not work in Internet Explorer.</p>
</body>
</html>

I hope this article is helpful for you to design javascript program.


Related articles: