# Table 過長時使用 Scroll Bar ###### tags: `實作 Style` ## 結果 ![](https://i.imgur.com/RhoYvgQ.gif) ## HTML ``` <div class = "table-container"> <table>...</table> </div> ``` ## Style ``` table { width: 100%; } .table-container { width: 100%; overflow-x: auto; padding-left: 15px; padding-right: 15px; } ``` [參考 - aguycalledmax 的答案](https://stackoverflow.com/questions/21715927/table-row-not-expanding-to-full-width/36606652)