I am trying to make something like live chat. I want to set default position of displayed text on the bottom, like on facebook chat or all other chats. I mean I have the newest messages on the bottom of the div and the oldest on the top. When I open the chat, it shows me the oldest messages. I am very thankful for all advices! Thank you!
There are CSS settings of chat pannel:
 #chat {
 position: absolute;
 top: 90px;
 bottom: 220px;
 left: 0;
 width: 100%;
 margin: 0 auto;
 overflow: auto;
  color: #141855;
 }
 #chat_content {
 width: 90%;
 margin: 0 auto;
 }
