我需要將兩個div元素放在同一水平面上。按照我所做的方式,第二個顯示在第一個下方。 我想將它們放在一起,讓它們在轉換時相互交叉。在同一水平面上放置兩個div
編輯1- Here當按下按鈕交換他們的類時,div上下移動。
#aaidi,#aaidi3 {
-webkit-transition: margin-left 1s ease-in-out;
-moz-transition: margin-left 1s ease-in-out;
-o-transition: margin-left 1s ease-in-out;
transition: margin-left 1s ease-in-out;
}
.left {
margin-left: 45%;
border: 1px solid green ;
width: 20px;
height: 4px;
background: #FF0000;
} // similar for right with margin-left:55%
......
<tr>
<td colspan=3>
<div id="aaidi" class="left">
</div>
<div id="aaidi3" class="right">
</div>
</td>
</tr> // after this there is a button pressing whom changes the class of both divs.
親愛的看到我的答案,讓我知道,如果我落後了一些地方。 – w3uiguru 2012-04-05 16:53:45
謝謝Dinesh,但是當我把按鈕放在那裏時它不工作。在你的答案中看到評論。 – 2012-04-05 17:03:37
[Here](http://jsfiddle.net/ht6M9/3/)當按下按鈕交換他們的類時,div上下移動。 – 2012-04-05 17:22:27