w3.css
채팅
CSS를 사용하여 채팅 메시지를 만드는 방법을 알아보자.
채팅 메시지를 만드는 방법
1단계) HTML 추가
<div class="container"> <img src="/w3images/bandmember.jpg" alt="Avatar"> <p>Hello. How are you today?</p> <span class="time-right">11:00</span> </div> <div class="container darker"> <img src="/w3images/avatar_g2.jpg" alt="Avatar" class="right"> <p>Hey! I'm fine. Thanks for asking!</p> <span class="time-left">11:01</span> </div> <div class="container"> <img src="/w3images/bandmember.jpg" alt="Avatar"> <p>Sweet! So, what do you wanna do today?</p> <span class="time-right">11:02</span> </div> <div class="container darker"> <img src="/w3images/avatar_g2.jpg" alt="Avatar" class="right"> <p>Nah, I dunno. Play soccer.. or learn more coding perhaps?</p> <span class="time-left">11:05</span> </div>
2단계) CSS 추가
/* Chat containers */ .container { border: 2px solid #dedede; background-color: #f1f1f1; border-radius: 5px; padding: 10px; margin: 10px 0; } /* Darker chat container */ .darker { border-color: #ccc; background-color: #ddd; } /* Clear floats */ .container::after { content: ""; clear: both; display: table; } /* Style images */ .container img { float: left; max-width: 60px; width: 100%; margin-right: 20px; border-radius: 50%; } /* Style the right image */ .container img.right { float: right; margin-left: 20px; margin-right:0; } /* Style time text */ .time-right { float: right; color: #aaa; } /* Style time text */ .time-left { float: left; color: #999; }
기본 예시
예제 보기참고
W3C School - Chat