私はこのajax応答の後に呼び出されるjavascript関数を持っています。CSSの位置付けの問題
#animated_status_message{
background-color: orange;
color: black;
font-weight: bold;
border: 1px solid black;
margin-top: 2px;
padding: 20px;
z-index: 1000;
max-width: 80%;
position:fixed;
opacity:0.92;
}
そして最後に、HTML::
<div id="animated_status_message" style="top: -60px;"></div>
javascriptのは、おそらくここでは必要ありませんが、これはdiv要素のCSSです
// If there is a notification already, clear it and restart with the new notification.
try {clearTimeout(timeout_handle);}
catch(err){}
$('#animated_status_message').html(
'this is a status message'
);
$("#animated_status_message").animate({top:"0"},{duration:400})
timeout_handle = setTimeout("$('#animated_status_message').animate({top:'-60px'},{duration:400})", 4000);
:それは、このコードのビットが含まれています念のため。
問題は、divが中央揃えされていないことです。私は余白の自動と親divを作成し、それに左のプロパティを追加し、コンテンツを保持する実際のdivを持つメソッドの束を試してみました。
私はこれをどのように結びつけることができますか?
おかげ エリック
どのブラウザをお使いですか?位置を相対的にマージンをautoに設定してからtext-align:centerで親に設定しようとしましたか? – jhorton
'margin:0 auto;'で試してみましたか? – kba