<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>
This is the example code. I want all three boxes to appear side by side, using css. Any way of doing that? I want to use position:fixed, because I want them to appear on the bottom-right corner of the page without disturbing the rest of the page. These boxes will be chat boxes to tell you the truth.