我试图弄清楚我们如何让 2 个 div 彼此完全相邻,但不使用宽度之类的东西。
我正在使用 Bootstrap Responsive,我禁用了正确的 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*/
}