我试图将这些div对齐,但只有前两个div对齐。 谁知道我要做什么?
<div id="user-tweets" style="float:left; width:25%; border:solid #FCF 1px; height:300px;"></div>
<div id="map_canvas" style="float:left; width:45%; border:solid #FCF 1px; height:400px"></div>
<div id="news-tweets" style"float:left; width:20%; border:solid #0056A3 5px; height:500px;"></div>
答案 0 :(得分:3)
您似乎错过了第三项=
。
<div id="user-tweets" style="float:left; width:25%; border:solid #FCF 1px; height:300px;"></div>
<div id="map_canvas" style="float:left; width:45%; border:solid #FCF 1px; height:400px"></div>
<div id="news-tweets" style="float:left; width:20%; border:solid #0056A3 5px; height:500px;"></div>