我有一个宽度为 200px 的表格。
它有 2 列:
问题是:当 Title + Logo 超过 200px 时,我只需要限制Title。
------------------------
|Title |Logo |
------------------------
|Helloooo...|img |
------------------------
Run Code Online (Sandbox Code Playgroud)
仅限制HTML 和 CSS
我尝试不同的想法:
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
table-layout:fixed;
...
Run Code Online (Sandbox Code Playgroud)
我得到的唯一结果是:
------------------------
|Title |Logo |
------------------------
|Helloooooooooooo|img | -> more than 200px
------------------------
Run Code Online (Sandbox Code Playgroud)
/编写 CSS 代码如下/
.appadd {
white-space: nowrap;
overflow: hidden;
width: 180px;
height: 30px;
text-overflow: ellipsis;
Run Code Online (Sandbox Code Playgroud)
}
| 归档时间: |
|
| 查看次数: |
12712 次 |
| 最近记录: |