【问题标题】:How can I set width of a table less than 1 percent如何将表格的宽度设置为小于 1%
【发布时间】:2016-01-29 05:07:35
【问题描述】:

如何将表格的宽度设置为小于 1%?

<div>
<table class='total_cost table no-margin' cellpadding="0" cellspacing="0" width="0.5%" style='background:#4A84CE; float:left; height:20px; padding:0px; border:none; border-spacing:0px; border-collapse:collapse;'>
 <tr>
   <td class='cost text-right fg-white employee-tooltip' cellpadding="0" cellspacing="0" style='padding:0px; border:none;border-spacing:0px; border-collapse:collapse; background:#F00' ></td>
       </tr>
</table>
<span class="display_time"> 2 hours</span>
</div>

【问题讨论】:

  • 试试:width:0.25%;或类似的东西。

标签: html html-table width


【解决方案1】:

将任何宽度设置在 0% 和 1% 之间,例如 0.25%、0.50%、0.75%

  <div>
    <table class='total_cost table no-margin' cellpadding="0" cellspacing="0" width="0.50%" style='background:#4A84CE; float:left;  height:20px; padding:0px; border:none; border-spacing:0px; border-collapse:collapse;'>
     <tr>
       <td class='cost text-right fg-white employee-tooltip' cellpadding="0" cellspacing="0" style='padding:0px; border:none;border-spacing:0px; border-collapse:collapse; background:#F00' ></td>
           </tr>
    </table>
    <span class="display_time"> 2 hours</span>
    </div>

【讨论】:

  • 因为你说你想要小于 1%,我猜 0% 也小于 1%,如果你想要大于 0%,你可以使用 0 到 1 之间的任何值,比如 0.25%,0.50 % 或 0.75% 根据您的需要。
  • 感谢大家的帮助。
  • 如果你喜欢答案请点击+1 :)
【解决方案2】:

<div>
<table class='total_cost table no-margin' cellpadding="0" cellspacing="0" width="0.1%" style='background:#4A84CE; float:left; height:20px; padding:0px; border:none; border-spacing:0px; border-collapse:collapse;'>
 <tr>
   <td class='cost text-right fg-white employee-tooltip' cellpadding="0" cellspacing="0" style='padding:0px; border:none;border-spacing:0px; border-collapse:collapse; background:#F00' ></td>
       </tr>
</table>
<span class="display_time"> 2 hours</span>
</div>

【讨论】:

    猜你喜欢
    • 2019-01-01
    • 1970-01-01
    • 2014-05-29
    • 2012-09-30
    • 1970-01-01
    • 1970-01-01
    • 2019-12-09
    • 2012-07-20
    • 1970-01-01
    相关资源
    最近更新 更多