gpt4 book ai didi

html - 防止元素展开

转载 作者:行者123 更新时间:2023-11-28 05:38:39 24 4
gpt4 key购买 nike

我有一个包含 URL 列的表格,有时 URL 会变得很长。

我将表格设置为具有特定宽度,但有时 URL 甚至不会自行中断并扩展表格,这会扰乱布局。

这是一个 Fiddle供您查看,我将提供以下代码:

HTML

<table border="1">
<thead>
<tr>
<th>Name</th>
<th>URL</th>
</tr>
</thead>
<tbody>
<tr>
<td>Test</td>
<td>http://www.exampledomain.org/How-We-Work/General-Information/General-Opportunities/Open-Concept-Memo-Global-Test-Cases</td>
</tr>
</tbody>
</table>

<table border="1">
<thead>
<tr>
<th>Name</th>
<th>URL</th>
</tr>
</thead>
<tbody>
<tr>
<td>Another Test</td>
<td>http://www.exampledomain.org/search?q=flagship+collaborative+research+program&btnG=Google%2BSearch&client=csiro_frontend&output=xml_no_dtd&proxystylesheet=csiro_frontend&proxyreload=0&sort=date%253AD%253AL%253Ad1&wc=200&wc_mc=1&oe=UTF-8&ie=UTF-8&ud=1&exclude_apps=1&site=Main&filter=0&getfields=*&sourcepage={CB41B120-BEE8-4511-9BED-A5E43D32381D}</td>
</tr>
</tbody>
</table>

CSS

table {
width: 500px;
margin: 5px;
}

最佳答案

https://jsfiddle.net/0xyhz7p0/1/

td {
word-break: break-word;
}

关于html - 防止元素展开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38042854/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com