Home  >  Article  >  Web Front-end  >  JS method to control table row text alignment_javascript skills

JS method to control table row text alignment_javascript skills

WBOY
WBOYOriginal
2016-05-16 16:07:022109browse

The example in this article describes the JS method to control the text alignment of table rows. Share it with everyone for your reference. The details are as follows:

The following JS code can control the alignment of the entire line of text in the table 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 will be helpful to everyone’s JavaScript programming design.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn