携帯サイトでAlign(左寄せ・右寄せ・中央寄せ)が効かない

add to hatena hatena.comment (0) add to del.icio.us (0) add to livedoor.clip (0) add to Yahoo!Bookmark (0) Total: 0

端末によってはまちまちなのでalignとstyleの両方で指定してあげましょう。

<div align=”left”>左寄せ</div>
<div align=”center”>中央寄せ</div>
<div align=”right”>右寄せ</div>

↓ (styleとalignの両方指定) ↓

<div align=”left” style=”text-align:left”>左寄せ</div>
<div align=”center” style=”text-align:left”>中央寄せ</div>
<div align=”right” style=”text-align:right”>右寄せ</div>

Leave a Reply

You must be logged in to post a comment.