'define table row space
how to define table space?
I want to make the space smaller and my icons do not disappear, also have a problem, having a small screen my icons are hidden
I need to keep the size of my icons when having the small screen, help pls
<div class="card-body">
<div class="main-content-label mg-b-5">
Simple Table
</div>
<p class="mg-b-20">Example of redash Simple Table.</p>
<div class="table-responsive">
<table class="table mg-b-0 text-md-nowrap">
<thead>
<tr>
@foreach($tipos as $tipo)
<th><img style="height: 32px; width: 32px;" src="{{url($tipo->icono)}}" alt=""></th>
@endforeach
</tr>
</thead>
</table>
</div>
</div>
</div>
Solution 1:[1]
you can do something like this as it will help to create all the images in 1 row and help you to scroll if you will add more images:
<div class="card-body">
<div class="main-content-label mg-b-5">
Simple Table
</div>
<p class="mg-b-20">Example of redash Simple Table.</p>
<div class="scrollmenu">
<img src="https://i.imgur.com/RquOiuK.png" style="width:20%;height:30%;">
<img src="https://i.imgur.com/RquOiuK.png" style="width:20%;height:30%;">
<img src="https://i.imgur.com/RquOiuK.png" style="width:20%;height:30%;">
<img src="https://i.imgur.com/RquOiuK.png" style="width:20%;height:30%;">
<img src="https://i.imgur.com/RquOiuK.png" style="width:20%;height:30%;">
<img src="https://i.imgur.com/RquOiuK.png" style="width:20%;height:30%;">
</div>
</div>
img{
height: 0.25rem;
font-size: 3.75em;
}
div.scrollmenu {
background-color: #333;
overflow: auto;
white-space: nowrap;
}
div.scrollmenu a {
display: inline-block;
color: white;
text-align: center;
padding: 14px;
text-decoration: none;
}
div.scrollmenu a:hover {
background-color: #777;
}
here is the link of my sample: you can check here
Solution 2:[2]
Currently, this feature isn't officially supported. You have three basic options:
- explicitly enumrate all deps
- use one of "hacks" from https://github.com/bazelbuild/bazel/issues/1920
- use undocumented
include_runfiles = Truefeature https://github.com/bazelbuild/rules_pkg/issues/145
Solution 3:[3]
Setting the (undocumented) include_runfiles = True will include the shared object and any other runfiles of all the transitive dependencies.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | |
| Solution 2 | |
| Solution 3 | Brian Silverman |



