CSS文本框滚动问题

时间:2014-10-12 01:36:44

标签: html css text scroll

我有一个<div>,里面有很多文字,溢出设置为自动,因为我只想要一个滚动条。当我最初编码它时,滚动条工作正常,你可以看到所写的所有单词。但是,一旦保存了网页并且我在保存的版本上尝试滚动条,它就不会向下滚动。什么可能导致我的滚动条不再起作用?

    #information {
    height: 250px;
    width: 270px;
    background: #151515;
    position: absolute;
    border-radius: 10px;
    margin: 220px 10px 10px 200px;
    opacity: .6;
    font-family: Century Gothic;
    word-spacing: 20px;
    font-size: 14px;
    color: #58D3F7;
    text-indent: 20px;
    }
<div style="overflow: auto;" id="information">
  False text here blah blah blah
</div>

0 个答案:

没有答案