ASPページに2つのdivがあります
<div id="leftcolotherdestinations" style="display:none;">
<asp:Panel ID="pnlOtherDestinations" runat="server" CssClass="destinationpanel">
</asp:Panel>
</div>
<div id="leftcolheaderupdates">
Updates
</div>
#leftcolotherdestinationsは、ボタンをクリックすると jquery で表示されます。ここまでは問題ありません。しかし、#leftcolotherdestinations が表示されると、#leftcolheaderupdatesは下にスライドしますが、アニメーションが終了すると、前の場所から上に移動します。上のdivで下げたい。これが私のcssです。
#lefcoltotherdestinations
{
margin-top:20px;
display:block;
height:20px;
background-color:#D8D2CE;
}
#leftcolheaderupdates
{
display:block;
height:20px;
background-color:#D8D2CE;
}