0

我有一个非常简单的 HTML,我正在尝试(并且惨遭失败)正确格式化。我基本上有以下元素:

<pre>http://myserver.com:9000/something/REQUEST/124125125125?username=username&password=password</pre>

我基本上需要模仿你在我上方看到的东西。如果需要,我需要将单行文本显示为 pre 中的单行文本,并带有水平滚动。

到目前为止,所有这样做的尝试都失败了。作为 a的<pre>孩子存在<td>

<table>
    <tbody>
        <tr>
            <td>
                Behold some incredible, glowy sample text, and then a URL:
                <pre>...</pre>
            </td>
        </tr>
    </tbody>
</table>
4

1 回答 1

2

StackOverflow 使用

overflow: auto;
width: auto;

在父容器上具有显式宽度 (730px)<pre>

于 2012-05-10T23:54:38.370 回答