Calendar

<< 2月 >>
1234567
891011121314
15161718192021
22232425262728
2010年2月19日の記事一覧
  • CSSでのポジション指定時にIE6でズレてしまう
  • 2010.02.19
  • position:relative;とposition:absoluteで位置指定した際、IE6でズレる 😯


    しばらくハマってしまったが、親要素にwidth:100%を入れる事で無事解決!



    htmlソース

    <div class=”bt_keisan”>

    <p>(ボタンの右に表示する文字)</p>

    <input type=”hidden” name=”action” value=”calculate” />

    <input type=”submit” value=”ボタン” />

    </div>


    CSSソース

    .bt_keisan {

    text-align:center;

    margin:10px 0 0 ;

    position:relative;

    width:100%;

    }


    .bt_keisan p {

    position:absolute;

    left:50%;

    top:50%;

    margin:-8px 0 0 40px;

    }



【この記事のタグ】
コメント&トラックバック(0)

▲ PAGE TOP