<html>
<head>
<style>
#rectangle {
position: absolute;
right: 0;
bottom: 0;
width: 150px;
height: 200px;
}
</style>
</head>
<body>
<div id='rectangle' style='background-color:red;'></div>
<div id='rectangle' style='background-color:green;'></div>
<div id='rectangle' style='background-color:black;'></div>
</body>
</html>
これはサンプルコードです。css を使用して、3 つのボックスすべてを並べて表示します。それを行う方法はありますか?position:fixed を使用したいのは、ページの残りの部分を邪魔することなく、ページの右下隅に表示したいからです。これらのボックスは、本当のことを言うためのチャット ボックスになります。