이 기사의 예에서는 표 셀의 수직 정렬을 제어하는 JS 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
다음 코드는 하단에 지정된 셀의 수직 정렬을 제어합니다
<!DOCTYPE html> <html> <head> <script> function valignCell() { var x=document.getElementById('myTable').rows[0].cells; x[0].vAlign="bottom"; } </script> </head> <body> <table id="myTable" border="1" height="70%"> <tr> <td>First cell</td> <td>Second cell</td> </tr> <tr> <td>Third cell</td> <td>Fourth cell</td> </tr> </table> <form> <input type="button" onclick="valignCell()" value="Vertical align cell content"> </form> </body> </html>
이 기사가 모든 사람의 JavaScript 프로그래밍 설계에 도움이 되기를 바랍니다.