我正在尝试编写一个 CSS,当用户在其中编写文本并且它溢出而不是滚动条或隐藏时,它就像在普通的 Word 文档中一样下降。我有这个代码:
#content-text {
width: 960px;
padding-left: 10px;
padding-right:10px;
text-align: left;
color:#000;
height:100%;
margin-left: 25px;
margin-right:25px;
}
奇怪的是,虽然这段代码实际上在 Firefox 的 IE 中执行了我想要的操作,但它会溢出并变成滚动条。我试过溢出:自动;溢出:隐藏;和溢出:继承;只是想看看是否有任何帮助,但到目前为止没有运气,老实说,我不知道为什么在 Firefox 中会发生这种情况,=/你们中的任何人都知道吗?
更新:我试过溢出:可见;但我只是得到了溢出......很明显,但它仍然没有包装。到目前为止,仅在 Firefox 中。=/
更新:可能影响的唯一另一件事是我有另一个 CSS 代码,第一个包含:
#content-title{
background-color: transparent;
background-image: url(../img/content-title-body.png);
background-repeat: repeat-y;
background-attachment: scroll;
background-x-position: 0%;
background-y-position: 0%;
height:auto;
position:absolute;
z-index :100; /* ensure the content-title is on top of navigation area */
width:1026px;/*1050px*/
margin: 160px 100px 5px 100px;
overflow: visible;
top: 55px;
}
使用它的 HTML 是:
<div id="content-title">
<div id="content-text"> Hola!Hola!Hola!Hola!Hola!Hola!Hola!Hola!Hola!Hola!Hola!Hola!Hola!Hola!Hola!Hola!Hola!Hola!Hola!Hola!Hola!Hola!Hola!Hola!Hola!Hola!Hola!Hola!Hola!Hola!Hola!Hola!Hola!Hola!Hola!Hola!<p>Hola!Hola!Hola!Hola!Hola!Hola!<p>Hola!Hola!Hola!Hola!<p>Hola!Hola!Hola!Hola!<p>Hola!Hola!Hola!<p>Hola!Hola!Hola!Hola!<p>Hola!Hola!
</div>
</div>