Bootstrap-Admin-Template icon indicating copy to clipboard operation
Bootstrap-Admin-Template copied to clipboard

responsive label font

Open ahmgeek opened this issue 11 years ago • 3 comments

as you can see , the problem with the label when i use it is the font inside it , if i have a big word and small screen it destroy it not making a scroll but by stretching the table .

1

ahmgeek avatar Nov 08 '13 21:11 ahmgeek

http://jsbin.com/Oraquvu/1

onokumus avatar Nov 14 '13 12:11 onokumus

i didn't get it ! what is the point ?

ahmgeek avatar Nov 15 '13 01:11 ahmgeek

Your table is too wide (more column). So to fit it all in you must to produce special solution. For example

HTML

<div class="table-responsive table-special">
  <table class="table">
  ...
  </table>
</div>

CSS

@media (min-width:500px) {
  .table-special{
    width: 100%;
    overflow-x: scroll;
  }
}

onokumus avatar Nov 15 '13 08:11 onokumus