CSS だけで要素をブラウザの中央に配置

Flash を使わずに CSS で <div> をブラウザの中央に配置する方法

実際に使用した例 » www.ludhaus.com

CSS

#wrap {
   position: absolute;
   width: 800px;
   height: 600px;
   left: 50%;
   top: 50%;
   margin-left: -400px;
   margin-top: -300px;
}

注意!
margin-left は width の半分
margin-top は height の半分

HTML

<div id="wrap">
   your contents
</div>

About this entry

  • Title: CSS だけで要素をブラウザの中央に配置
  • Published: 2007年8月22日
  • Category: Web サイト制作
  • Tag:
  • Share:
     
  •  
 

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

*

次のHTML タグと属性が使えます: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>