오른쪽의 파란색 요소와 왼쪽의 회색 요소를 슬라이드하고 싶습니다. 목록 항목은 하나씩 주문해야합니다. 어떤 도움을 주시면 감사플로팅 목록 항목 수정
: 여기
무슨 뜻인지 설명하는 예제 이미지 링크입니다..chat {
list-style: none;
padding: 0;
margin: 0;
overflow: hidden;
}
.chat li {
margin-bottom: 15px;
padding: 10px 20px;
border-radius: 20px;
}
.chat li:nth-child(odd) {
float: right;
background-color: #52adf4;
color: #fff;
}
.chat li:nth-child(even) {
float: left;
background-color: #e9e7e8;
color: #333;
}
<ul class="chat">
<li>Hi Joe</li>
<li>Hi, how're u?</li>
<li>Fine, how's it going bro?</li>
<li>Thanks as usual</li>
</ul>