<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並排顯示。任何方式做到這一點?我想使用position:fixed,因爲我希望它們出現在頁面的右下角,而不會干擾頁面的其餘部分。這些箱子將會是聊天室,告訴你事實。平面對齊固定DIV
你有無效的標記** ID屬性在HTML頁面中應該是唯一的**使用類別代替 –
而你說你使用'position:fixed'但你沒有使用它。給他們3個不同的id和三種不同的風格。 – putvande