Created
December 17, 2012 09:24
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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