Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用320andup,我有一个有 2 列的表。我想扩大一列。
有没有最好的做法?我担心使用<col width="100">它会弄乱响应式设计。
<col width="100">
不再支持该col width属性(从 HTML5 开始),因此绝对不是要走的路,尤其是如果您的网站将面向响应式设计。
col width
一个更好的选择是只给两个 col 一个公共类,并在你的 CSS 文件中为该类相应地设置首选宽度,例如
HTML
<col class="theCols">
CSS
.theCols { width:70%; }