行揃え(text-align)
<html> <head> <title>行揃え</title> <style type="text/css"> <!-- .c1 { text-align: left; } .c2 { text-align: right; } .c3 { text-align: center; } //--> </style> </head> <body> <div class="c1">左寄せ</div> <div class="c2">右寄せ</div> <div class="c3">センタリング</div> </body> </html>
〔 実行する 〕