ในการตั้งค่าการจัดตำแหน่งแนวตั้ง ให้ใช้คุณสมบัติ verticalAlign ตั้งค่าไว้ด้านบนหากต้องการย้ายข้อความที่ต้องการไปไว้ด้านบนสุด
ตัวอย่าง
คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อส่งคืนการจัดแนวเนื้อหาในแนวตั้งในองค์ประกอบด้วย JavaScript -
<!DOCTYPE html>
<html>
<head>
<style>
table {
border: 2px solid blue;
width: 200px;
height: 200px;
}
</style>
</head>
<body>
<table>
<tr>
<td id = "myTable">Demo Text1</td>
</tr>
<tr>
<td>Demo Text2</td>
</tr>
<tr>
<td>Demo Text3</td>
</tr>
</table>
<br>
<button type = "button" onclick = "display()"> Set top position </button>
<script>
function display() {
document.getElementById("myTable").style.verticalAlign="top";
}
</script>
</body>
</html>