table
English [ˈtebəl]
n. 테이블, 작업대, 게임 테이블
vt. 선반;
table의 3인칭 단수: tables 복수형: tables 현재 분사: tabledlayout
英[ˈleəaʊt] 美[ˈleˌaʊt]
n 레이아웃, 배열, 디자인; 복수형: 레이아웃
자바스크립트 tableLayout 속성 통사론
기능: 표 셀, 행, 열에 대한 알고리즘 규칙을 표시하는 데 사용됩니다.
구문: Object.style.tableLayout=automatic|fixed
자바스크립트 tableLayout 속성 예
<html> <head> <script type="text/javascript"> function setFixedTableLayout() { document.getElementById('myTable').style.tableLayout="fixed"; } </script> </head> <body> <table id="myTable" border="1" width="100%"> <col width="20%"><col width="40%"><col width="40%"> <tr> <td>1000000000000000000000000000</td> <td>10000000</td> <td>100</td> </tr> </table> <input type="button" onclick="setFixedTableLayout()" value="Set fixed table layout"> </body> </html>
인스턴스 실행 »
온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요