javascript - Bootstrap table in div horizontal scroll not work -


in content, put div table inside. need scroll horizontally. i've spent hours researching , trying solutions.

<div style="width:100%; overflow: scroll;">     <table style="width:2000px;">             <tr>                 <td>very large width table scroll horizontal</td>                 <td>x</td>                 <td>x</td>                 <td>x</td>             </tr>     </table> </div> 

safari test

chrome test

div 1500 px

since using bootstrap,instead of using styles use inbuilt classes.

<div class="table table-responsive">    <table >  //give width styling want.         <tr>             <td>very large width table scroll horizontal</td>             <td>x</td>             <td>x</td>             <td>x</td>         </tr>    </table> </div> 

this give horizontal scrollbar.


Comments

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

c# - Exception when attempting to modify Dictionary -