<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.win {
width: 400px;
height: 600px;
box-shadow: 0 0 4px #ccc;
}
#msg {
width: 340px;
height: 50px;
}
button {
width: 50px;
height: 50px;
}
.list:nth-of-type(odd) {
float: right;
clear: both;
}
.list:nth-of-type(even) {
float: left;
clear: both;
}
</style>
</head>
<body>
<div class="win">
</div>
<input type="text" id="msg">
<button id="an">发送</button>