Skip to content

Instantly share code, notes, and snippets.

@henteko
Created December 17, 2012 09:24
Show Gist options
  • Save henteko/4316984 to your computer and use it in GitHub Desktop.
Save henteko/4316984 to your computer and use it in GitHub Desktop.
bodyで text-align: center; してるけど、 <div id="baners">ばなーとか</div> はこのtext-alignに含まれない(divだから、spanとかだと含まれる)からセンタリングされないみたい だから、CSSの#banersの所を以下のようにすればおk
#baners {
width: 500px;
line-height: 40px;
padding: 10px;
/****************
* 以下を追加する
****************/
margin-left: auto;
margin-right: auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment