作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
编辑 08.02.2017:我不需要支持所有浏览器,因为我使用的是最新的 electron-framework
。它在 Chromium 56.0.2924.87
我有一个可编辑的表
,它在用户可以编辑之前用一些数据进行了初始化。因为我稍后想以 A4 格式打印该表格,所以它不能超过给定的宽度。
我现在的问题是,如果我使用
table-layout:fixed;
width:100%;
可编辑的 TD
将不再流畅。当然我知道这是一个悖论,固定
的东西不可能是流动的
...
不过我敢肯定,在 2017 年一定有办法用 fluid td
实现 fixed table
。
这是一个没有固定表的例子:https://jsfiddle.net/stjkd2xs/
如您所见,只要您使用少量单词,表
就不会超出其父级。 TD
是流动的
。但是,如果您开始写一个长单词,table
会突破它的父级。
这是一个固定布局的例子:https://jsfiddle.net/jdedo87z/
在这个例子中,table
将使用父级的所有宽度,这很好。但是 TD
本身将具有固定宽度,这并不好。
我想以某种方式实现TD
,它在固定表
中流畅
。
table
并改用 divs
... 期待您的建议。
问候,Megajin
最佳答案
那不是表格的工作方式...
但是你可以尝试这样的事情:
.freak-box{width:300px; height:300px; border:1px solid red;}
.phreak{position:relative; max-width:400px; margin-right:100px; border:1px solid blue;}
.squishy-inside{position:absolute; width:100%; display:inline;}
<div class="phreak">
<div class="freak-box">
<div class="squishy-inside">
When Tom came home from the park, he opened the door to his home and found something was amiss. A lamp was knocked to the ground and there was strange noises coming from the kitchen. He felt his chest tighten as he thought of his wife, Sarah, was she ok or was she in there... where the noises were?
</div>
</div>
</div>
关于html - 在 TABLE 固定的情况下是否可以保持 TD 的流动性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42086020/
我目前正在用 C# 开发国际象棋引擎,在开发代码以确定任何给定棋子在第 1、2 和 3 步中的 future 移动性时,我遇到了一些困难。基本思想是奖励棋子移动性增加的奖励,惩罚移动性差的棋子。 棋盘
我是一名优秀的程序员,十分优秀!