2015-04-20 2 views
2

Кто-нибудь знает, почему Opera не использует overflow:hidden?Переполнение не работает в Opera 28

Левые Opera, право Firefox enter image description here

CSS:

#ChatBig { 
    width: 60%; 
    height: 600px; 
    margin: auto; 
    background-color: white; 
    overflow:hidden; 
    resize:none; 
    position: relative; 
    border: 1px solid #000; 
} 
#ChatMessages{ 
    width: 100%; 
    min-height: 498px; 
    font-size: 16px; 
    font-weight: normal; 
    overflow:hidden; 
    resize:none; 
    position: absolute; 
    bottom: 50px; 
    margin-bottom: 10px; 
} 
#ChatText{ 
    width: 100%; 
    height: 50px; 
    border: 1px solid #000; 
    overflow:hidden; 
    resize:none; 
    position: absolute; 
    bottom: 0; 
} 
+0

Для Opera 9 и 10 требуется префиксная версия '-o-text-overflow'. –

+0

Я использую opera 28 – Emperial

+0

Нет, извините, не исправил его – Emperial

ответ

0

Попробуйте с этим:

#ChatBig { 
 
    width: 60%; 
 
    height: 600px; 
 
    margin: auto; 
 
    background-color: white; 
 
    overflow:hidden; 
 
    resize:none; 
 
    position: relative; 
 
    border: 1px solid #000; 
 
} 
 
#ChatMessages{ 
 
    width: 100%; 
 
    min-height: 498px; 
 
    font-size: 16px; 
 
    font-weight: normal; 
 
    overflow:hidden; 
 
    resize:none; 
 
    position: absolute; 
 
    bottom: 50px; 
 
    margin-bottom: 10px; 
 
} 
 
#ChatText{ 
 
    width: 100%; 
 
    height: 50px; 
 
    border: 1px solid #000; 
 
    overflow:hidden; 
 
    resize:none; 
 
    position: absolute; 
 
    bottom: 0; 
 
}
<div id="ChatBig"> 
 
    <div id="ChatMessage"> 
 
     A line of chat<br/> 
 
     A line of chat<br/> 
 
     A line of chat<br/> 
 
     A line of chat<br/> 
 
     A line of chat<br/> 
 
     A line of chat<br/> 
 
     A line of chat<br/> 
 
     A line of chat<br/> 
 
     A line of chat<br/> 
 
     A line of chat<br/> 
 
     A line of chat<br/> 
 
     A line of chat<br/> 
 
     A line of chat<br/> 
 
     A line of chat<br/> 
 
     A line of chat<br/> 
 
     A line of chat<br/> 
 
     A line of chat<br/> 
 
     A line of chat<br/> 
 
     A line of chat<br/> 
 
     A line of chat<br/> 
 
     A line of chat<br/> 
 
     A line of chat<br/> 
 
     A line of chat<br/> 
 
     A line of chat<br/> 
 
     A line of chat<br/> 
 
     A line of chat<br/> 
 
     ... 
 
    </div> 
 
    <textarea id="ChatText"> 
 
    </textarea> 
 
</div>