-1

我有一个 div,里面有一些代码(比如 textarea),我想从父元素修复到 99%。没关系,但是如果代码太大,我需要放置 overflow-x:scroll 以免从父元素中退出。

因为我使用宽度:99%,所以我不能使用溢出-x:滚动。

我不想放 width:700px 或 500 或其他什么,因为我现在没有客户端分辨率,我真的想看到这个 div 的最大宽度。

对不起我的语言不好。

请给点建议?

谢谢。

4

4 回答 4

0

请原谅我的错误,因为我没有给出所有代码。

Stil 不起作用,因为父元素 (table -> td) 可以灵活地:

<style> 
div {width:99%; border:1px solid grey; white-space:pre; overflow:auto;}
</style>

<table cellspacing="0" cellpadding="0">
<tr>
<td> some stuff here </td>
<td>
<div>
test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test 
</div>
</td>
</tr>
</table>

如果有人有其他建议...

于 2012-12-13T06:15:16.140 回答
0

抱歉,我忘记了空格:pre。

试试这段代码,你会看到:

<style>
div {width:99%; border:1px solid grey; white-space:pre; overflow:x-scroll}
</style>

<div>
test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test 
</div>
于 2012-12-12T21:48:27.613 回答
0

像这个?

div {width:99%; border:1px solid grey; white-space:pre; overflow:auto;}
于 2012-12-13T05:19:21.507 回答
0
    <style>
    div {width:99%;
 border:1px solid grey;
 white-space:pre;
 overflow:x-scroll}
    </style>

    <div>
    test test test test test
    </div>
于 2012-12-13T05:40:17.887 回答