Run ❯
Get your
own
website
Result Size:
625 x 565
×
Change Orientation
Save Code
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <head> <style> table { 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() { alert(document.getElementById("myTd").style.verticalAlign); } </script> </body> </html>