1. div 아래에서 부터 쌓기 채팅을 하는데 가장 최근의 채팅이 아래에 있어야하고 그러니까 위에서부터 순서대로 쌓이는게 아니라 밑에서 부터 순서대로 쌓여야하는 것이다. export const MessageField = styled.div` padding: 15px 24px; overflow-y: auto; position: relative; height: 500px; box-sizing: border-box; `; export const MessageFieldInner = styled.div` position: absolute; bottom: 0; left: 0; width: 100%; padding: 24px; box-sizing: border-box; height: 500px; `; 밑에서 부터 쌓..