我想知道如何讓2個div完全相鄰,但不使用寬度等任何東西。2 div彼此相鄰而不使用寬度
我正在使用Bootstrap響應式,我禁用了正確的div。雖然,左邊的div仍然看起來會有一個正確的div。
有沒有辦法做到這一點?
.rightinfo { /* On the right */
float:right;
padding:5px;
position:relative;
top: 0;
right: 0;
margin-left:500px; /* Any kind of margin in here doesn't work, even without width */
}
.maininfo { /* On the left */
background:#CAD2E0;
padding: 5px;
width: 69%; /* Even if there's margin-left on the right div, this still overrides it and uses the whole page size if it's 100% width*/
}
如果在這裏附近有一件事比黃金的重量更重要,那就是_code_。請發佈您的代碼或指向相關示例的鏈接。 – Kyle
請在這裏發佈您的代碼 –
發佈代碼。 – user1663544