トップ   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS

HTML:CSSメモ のバックアップソース(No.3)

*HTML:CSSメモ [#vb261038]

調べたことを忘れないように

-左右中央に配置
 margin: 0 auto;

-左右中央に配置して、下を20px空ける
 margin: 0 auto;
 margin-bottom: 20px;

-画像を中央寄席
 .img{
	display:block;
	margin: 0 auto;
 }

-角を丸にする
 -moz-border-radius: 10px;
 -webkit-border-radius: 10px;
 border-radius: 10px;