

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to set the vertical alignment of the content in an element with JavaScript?
To set the vertical alignment, use the verticalAlign property. Set it on top if you want to move a specific text to the top.
Example
You can try to run the following code to return the vertical alignment of the content in an element with 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>
- Related Questions & Answers
- How to set the horizontal alignment of an element with JavaScript?
- How to set the horizontal alignment of text with JavaScript?
- How to set the alignment of the JLabel content along the Y axis in the bottom with Java
- How to set the alignment of the JLabel content along the X axis in Java?
- How to set the alignment of the JLabel content along the Y axis in Java?
- How to set the height of an element with JavaScript?
- How to set the margins of an element with JavaScript?
- How to set the padding of an element with JavaScript?
- Vertical alignment of an image using CSS
- How to set the left margin of an element with JavaScript?
- How to set the right padding of an element with JavaScript?
- How to set the maximum height of an element with JavaScript?
- How to set the bottom margin of an element with JavaScript?
- How to set the top margin of an element with JavaScript?
- How to set the right margin of an element with JavaScript?
Advertisements