运行 ❯
获取你
的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> table, td { border: 1px solid black; } #myTABLE { width: 100%; } </style> </head> <body> <p>Click the "Try it" button to return the value of the table-layout property.</p> <table id="myTABLE" style="table-layout:fixed;"> <tr> <td>1000000000000000000000000000</td> <td>10000000</td> </tr> <tr> <td>John</td> <td>Smith</td> </tr> <tr> <td>Jane</td> <td>Doe</td> </tr> </table> <br> <button type="button" onclick="myFunction()">Return table layout</button> <script> function myFunction() { alert(document.getElementById("myTABLE").style.tableLayout); } </script> </body> </html>