gpt4 book ai didi

html - 表格布局为 : fixed; and how to make one column wider 的表格

转载 作者:技术小花猫 更新时间:2023-10-29 11:31:44 26 4
gpt4 key购买 nike

所以我有一张这样风格的 table :

table-layout: fixed;

这使得所有列的宽度相同。我希望有一列(第一列)更宽,然后其余列以相等的宽度占据表格的剩余宽度。

如何实现?

table {
border-collapse: collapse;
width: 100%;
border: 1px solid black;
background: #ddd;
table-layout: fixed;
}

table th, table td {
border: 1px solid #000;
}

table td.wideRow, table th.wideRow {
width: 300px;
}
<table class="CalendarReservationsBodyTable">
<thead>
<tr>
<th colspan="97">Rezervovane auta</th>
</tr>
<tr>
<th class="corner wideRow">Auto</th>
<th class="odd" colspan="4">0</th>
<th class="" colspan="4">1</th>
<th class="odd" colspan="4">2</th>
<th class="" colspan="4">3</th>
<th class="odd" colspan="4">4</th>
<th class="" colspan="4">5</th>
<th class="odd" colspan="4">6</th>
<th class="" colspan="4">7</th>
<th class="odd" colspan="4">8</th>
<th class="" colspan="4">9</th>
<th class="odd" colspan="4">10</th>
<th class="" colspan="4">11</th>
<th class="odd" colspan="4">12</th>
<th class="" colspan="4">13</th>
<th class="odd" colspan="4">14</th>
<th class="" colspan="4">15</th>
<th class="odd" colspan="4">16</th>
<th class="" colspan="4">17</th>
<th class="odd" colspan="4">18</th>
<th class="" colspan="4">19</th>
<th class="odd" colspan="4">20</th>
<th class="" colspan="4">21</th>
<th class="odd" colspan="4">22</th>
<th class="" colspan="4">23</th>
</tr>
</thead>
<tbody>
<tr>
<td class="alignRight wideRow">KE-260 FC - Octavia combi</td>
<td class=" borderLeft"></td>
<td class="odd"></td>
<td class=""></td>
<td class="odd"></td>
<td class=" borderLeft"></td>
<td class="odd"></td>
<td class=""></td>
<td class="odd"></td>
<td class=" borderLeft"></td>
<td class="odd"></td>
<td class=""></td>
<td class="odd"></td>
<td class=" borderLeft"></td>
<td class="odd"></td>
<td class=""></td>
<td class="odd"></td>
<td class=" borderLeft"></td>
<td class="odd"></td>
<td class=""></td>
<td class="odd"></td>
<td class=" borderLeft"></td>
<td class="odd"></td>
<td class=""></td>
<td class="odd"></td>
<td class=" borderLeft"></td>
<td class="odd"></td>
<td class=""></td>
<td class="odd"></td>
<td class=" borderLeft"></td>
<td class="odd"></td>
<td class=""></td>
<td class="odd"></td>
<td colspan="16" class="highlighted borderLeft" title="Richard Knop">
Richard Knop
</td>
<td class=" borderLeft"></td>
<td class="odd"></td>
<td class=""></td>
<td class="odd"></td>
<td class=" borderLeft"></td>
<td class="odd"></td>
<td class=""></td>
<td class="odd"></td>
<td class=" borderLeft"></td>
<td colspan="14" class="highlighted" title="Richard Knop">
Richard Knop
</td>
<td class="odd"></td>
<td class=" borderLeft"></td>
<td class="odd"></td>
<td class=""></td>
<td class="odd"></td>
<td class=" borderLeft"></td>
<td class="odd"></td>
<td class=""></td>
<td class="odd"></td>
<td class=" borderLeft"></td>
<td class="odd"></td>
<td class=""></td>
<td class="odd"></td>
<td class=" borderLeft"></td>
<td class="odd"></td>
<td class=""></td>
<td class="odd"></td>
<td class=" borderLeft"></td>
<td class="odd"></td>
<td class=""></td>
<td class="odd"></td>
<td class=" borderLeft"></td>
<td class="odd"></td>
<td class=""></td>
<td class="odd"></td>
</tr>
</tbody>
</table>

jsfiddle:http://jsfiddle.net/6p9K3/

注意第一列,我希望它的宽度为 300px

最佳答案

您可以只给第一个单元格(因此是列)一个宽度,并将其余的默认为 auto

table {
table-layout: fixed;
border-collapse: collapse;
width: 100%;
}
td {
border: 1px solid #000;
width: 150px;
}
td+td {
width: auto;
}
<table>
<tr>
<td>150px</td>
<td>equal</td>
<td>equal</td>
</tr>
</table>


或者获取列宽的“正确方法”可能是使用 col element本身

table {
table-layout: fixed;
border-collapse: collapse;
width: 100%;
}
td {
border: 1px solid #000;
}
.wide {
width: 150px;
}
<table>
<col span="1" class="wide">
<tr>
<td>150px</td>
<td>equal</td>
<td>equal</td>
</tr>
</table>

关于html - 表格布局为 : fixed; and how to make one column wider 的表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6253963/

26 4 0
文章推荐: html - 标签的用途是什么?</a> </div> <div> 文章推荐: <a class="a-tag" href="/article/17/639634/detail.html" target="_blank">css - 垂直对齐 block 元素</a> </div> <div> 文章推荐: <a class="a-tag" href="/article/17/639632/detail.html" target="_blank">css - 如何在 Netbeans 中手动触发 LESS/SASS 编译器</a> </div> <div> 文章推荐: <a class="a-tag" href="/article/17/639631/detail.html" target="_blank">html - 如何使用 Content-disposition 强制将文件下载到硬盘?</a> </div> </div> <div class="content-p"> <ul class="like-article"> <li> <a class="a-tag" href="/article/23/7192982/detail.html" target="_blank">makefile - make clean、make clobber、make distclean、make mrproper 和 make realclean 之间有什么区别?</a> <p>我并不总是编写 make 文件,但当我这样做时,我喜欢尝试并写好它们。试图使界面与其他开发人员的期望一致始终是一项艰巨的任务。我正在寻找的是所有常见的 make some clean (GNU) ma</p> </li> <li> <a class="a-tag" href="/article/23/7202961/detail.html" target="_blank">makefile - make[1] make[2] make[3] 中的数字是什么意思?</a> <p>例如,我在运行 ma​​kefile 时收到这样的错误: make[3]: *** [/home/ziga/Downloads/openwrt/rakun_openwrt/staging_dir/ho</p> </li> <li> <a class="a-tag" href="/article/23/5313543/detail.html" target="_blank">c - make 时出错 : mingw32-make: *** No rule to make target</a> <p>我必须创建一个 Makefile,它从不同文件夹中的 .c 文件创建单个可执行文件。 .c 文件包含来自任何这些文件夹的头文件。根目录有3个子目录x/y、x/z、a,所有这些子目录都有一些.c和.h文</p> </li> <li> <a class="a-tag" href="/article/21/2008130/detail.html" target="_blank">c++ - make 给出错误 make : *** No rule to make target `clean' . Stop</a> <p>您好,我有一个简单的 MakeFile,其中包含: clean: rm -f ex1 但是当我运行命令make clean 时,出现以下错误: make: *** No rule to mak</p> </li> <li> <a class="a-tag" href="/article/13/202151/detail.html" target="_blank">how to uninstall MinGW and make cygwin 'make' as deafult make program with gcc 3.8.1(如何用GCC 3.8.1卸载MinGW,让Cygwin‘Make’成为默认Make程序)</a> <p>我已经为一些软件安装了它,但现在我根本不使用那个软件,所以我需要移除MinGW才能使用Cygwin进行Android开发。。我使用的是64位Windows 7</p> </li> <li> <a class="a-tag" href="/article/23/7694751/detail.html" target="_blank">gnu-make - make 没有意识到相对路径名依赖与绝对路径名目标相同</a> <p>以下是针对我遇到的问题的简化生成文件: all: /tmp/makey/../filey @echo All done /tmp/filey: @echo Filey 当我运行 mak</p> </li> <li> <a class="a-tag" href="/article/22/2988448/detail.html" target="_blank">linux - 收到错误 "make: *** No rule to make target ` 全部'。安装nagios主机时停止."while running this command "make all”</a> <p>获取错误: make: *** No rule to make target all. Stop." 在安装nagios主机期间运行此命令make all 最佳答案 可能的常见错误: 确保将文件命名为</p> </li> <li> <a class="a-tag" href="/article/23/6789521/detail.html" target="_blank">gnu-make - 是否可以将 "pass-through"GNU make jobserver 环境设置为通过第 3 方(非 make)提供服务的 submake</a> <p>当使用 -jN 运行 gnu-make 规则时,make 会创建 jobserver用于管理跨子制造商的工作数量。此外,您可以通过在 make 配方前添加 + 前缀来“将作业服务器环境传递”到 mak</p> </li> <li> <a class="a-tag" href="/article/23/7868283/detail.html" target="_blank">gnu-make - --always-make 可以不影响子制作吗?</a> <p>使用 GNU Make 4.1 概括 我调用一个子品牌 b.mk来自生成文件 a.mk .b.mk被调用以确保构建子系统。 有时我想强制一个目标为 a.mk重制: make -f a.mk --al</p> </li> <li> <a class="a-tag" href="/article/23/7838548/detail.html" target="_blank">gnu-make - gnu make 将许多文件复制到一个位置</a> <p>这个问题与问题 2543127 的精神相似。 . 我有一个带有头文件列表的 gnu makefile。每个头文件可能位于不同的目录中,例如, HEADERS = $(wildcard *.h) $(w</p> </li> <li> <a class="a-tag" href="/article/23/7775151/detail.html" target="_blank">gnu-make - GNU make 先决条件执行顺序</a> <p>假设我有以下 GNU make 目标: create_dir: @mkdir objects build_asm: $(ASM_FILES) @echo</p> </li> <li> <a class="a-tag" href="/article/23/7663591/detail.html" target="_blank">makefile - "make"和 "make all"有什么区别?</a> <p>我有一个具有以下结构的 Makefile(工作示例)。 .PHONY: image flashcard put-files put-files: @echo "=== put-files" i</p> </li> <li> <a class="a-tag" href="/article/23/7274146/detail.html" target="_blank">gnu-make - 如何从 make 目标手动调用另一个目标?</a> <p>我想要一个这样的makefile: cudaLib : # Create shared library with nvcc ocelotLib : # Create shared li</p> </li> <li> <a class="a-tag" href="/article/23/6917216/detail.html" target="_blank">gnu-make - 获取 make 变量的第一个字母</a> <p>有没有比更好的方法来获取 GNU make 变量的第一个字符 FIRST=$(shell echo $(VARIABLE) | head -c 1) (不仅笨重而且还要调用外部shell)? 最佳答案</p> </li> <li> <a class="a-tag" href="/article/23/6695474/detail.html" target="_blank">Makefile:为什么总是使用 `$(MAKE)` 而不是 `make` ?</a> <p>我通常使用像 cmake 这样的高级构建系统来构建我的 C/C++ 代码。但是由于各种原因,我直接使用 GNU make。 我正在进行递归构建,其中每个目录都有一个 makefile。 我最近不得不将</p> </li> <li> <a class="a-tag" href="/article/23/6184194/detail.html" target="_blank">Makefile:为什么总是使用 `$(MAKE)` 而不是 `make` ?</a> <p>我通常使用像 cmake 这样的高级构建系统来构建我的 C/C++ 代码。但是由于各种原因,我直接使用 GNU make。 我正在进行递归构建,其中每个目录都有一个 makefile。 我最近不得不将</p> </li> <li> <a class="a-tag" href="/article/23/5667945/detail.html" target="_blank">mingw - mingw32-make 是否重命名为 make?</a> <p>我安装了最新的mingw,发现没有mingw32-make了。有make.exe,所以我想知道最近是否将mingw32-make重命名为make.exe。 最佳答案 我不知道您从哪里获得 MinGW,</p> </li> <li> <a class="a-tag" href="/article/22/2977821/detail.html" target="_blank">linux - 在不使用 make 的情况下制作 make</a> <p>我正在使用 CentOS,但由于一个错误,许多软件包被删除了。所以我没有 yum 和 rpm。所以我想从源代码手动制作 yum,但我也没有制作。我知道一切都会用“制作包”制作。但是 make 自己呢?</p> </li> <li> <a class="a-tag" href="/article/23/8320727/detail.html" target="_blank">gnu-make - 为什么 gnu make 删除这个文件?</a> <p>考虑这个Makefile: .PHONY: all all: main.txt main.txt: build/main.txt cp build/main.txt . %/main.txt:</p> </li> <li> <a class="a-tag" href="/article/23/8317516/detail.html" target="_blank">gnu-make - 使用 gnu make 中的一个命令从多个文件制作多个文件</a> <p>假设目录输入中有 1000 个扩展名为 .xhtml 的文件,并且这些文件的某个子集(输出路径在 $(FILES) 中)需要通过 xslt 转换为目录输出中具有相同名称的文件.一个简单的 make 规</p> </li> </ul> </div> </div> <div class="resource col-xs-3 col-sm-3 col-md-3 col-lg-3"> <div class="content-p content-p-comment"> <div class="phone-current phone-current-float"> <img alt="" src="/images/phone/manphone.jpeg"> </div> <div class="phone-current-float phone-current-style"> 技术小花猫 </div> <div class="phone-current-summary"> <span><strong>个人简介</strong></span> <p> 我是一名优秀的程序员,十分优秀! </p> </div> </div> <div class="content-p content-p-comment"> <article class="p-list"> <div class="art-margin" style="border-bottom: 1px solid #f3f0f0; padding-bottom: 5px;"> <strong>作者热门文章</strong> </div> <ul class="recomment-list-user"> <li><a class="a-tag" href="/article/17/611999/detail.html" target="_blank">objective-c - iOS 5 : Can you override UIAppearance customisations in specific classes?</a></li> <li><a class="a-tag" href="/article/17/611998/detail.html" target="_blank">iphone - 如何将 CGFontRef 转换为 UIFont?</a></li> <li><a class="a-tag" href="/article/17/611997/detail.html" target="_blank">ios - 以编程方式关闭标记的信息窗口 google maps iOS</a></li> <li><a class="a-tag" href="/article/17/611996/detail.html" target="_blank">ios - Xcode 5 - 尝试验证存档时出现 "No application records were found"</a></li> </ul> </article> </div> <div class="content-p content-p-comment"> <article class="p-list"> <div class="art-margin" style="border-bottom: 1px solid #f3f0f0; padding-bottom: 5px;"> <strong>滴滴打车优惠券免费领取</strong> </div> <img alt="滴滴打车优惠券" src="/images/ad/didiad.png" width="210px" onclick="window.open('/ad/didi', '_blank')"> </article> </div> <div class="content-p content-p-comment"> <article class="p-list"> <div class="art-margin" style="border-bottom: 1px solid #f3f0f0; padding-bottom: 5px;"> <strong>全站热门文章</strong> </div> <ul class="recomment-list-user"> <li><a class="a-tag" href="/article/92/8828604/detail.html" target="_blank">中间件vs过滤器</a></li> <li><a class="a-tag" href="/article/92/8828603/detail.html" target="_blank">shell脚本快速检查192.168.1网段ip是否在用</a></li> <li><a class="a-tag" href="/article/92/8828602/detail.html" target="_blank">ASP.NETCore-日志记录系统(二)</a></li> <li><a class="a-tag" href="/article/92/8828600/detail.html" target="_blank">抛物流线参数化方程推导——从几何性质到代码实现</a></li> <li><a class="a-tag" href="/article/92/8828599/detail.html" target="_blank">【C语言学习】——命令行编译运行C语言程序的完整流程</a></li> <li><a class="a-tag" href="/article/92/8828598/detail.html" target="_blank">让LLM来评判|基础概念</a></li> <li><a class="a-tag" href="/article/92/8828597/detail.html" target="_blank">Pulsar客户端如何控制内存使用</a></li> <li><a class="a-tag" href="/article/92/8828596/detail.html" target="_blank">G1原理—4.G1垃圾回收的过程之YoungGC</a></li> <li><a class="a-tag" href="/article/92/8828595/detail.html" target="_blank">利用mybatis拦截器记录sql,辅助我们建立索引(一)</a></li> <li><a class="a-tag" href="/article/92/8828594/detail.html" target="_blank">C#实现Winform程序在系统托盘显示图标&开机自启动</a></li> </ul> </article> </div> </div> </div> </div> <div class="foot-font" style="border-top: 1px solid #f3f0f0; margin: auto; padding: 15px; background-color: #474443" align="center"> <a href="https://beian.miit.gov.cn/#/Integrated/index" target="_blank"><span class="color-txt-foot">Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号</span></a> <br/> <a href="/" target="_blank"><span class="color-txt-foot">广告合作:1813099741@qq.com</span></a> <a href="http://www.6ren.com" target="_blank"><span class="color-txt-foot">6ren.com</span></a> </div> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?d1cb9c185f1642d6f07e22cafa330c45"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?d46c26b2162aface49b8acf6cb7025e1"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> </body> </html>