HTMLデータの作り方7

CSSの基本的なプロパティ

color
文字などの色
background
バックの色
background-image
バックに貼る画像ファイル
URLで指定できるので他のマシンの画像も利用できる。
font-size
文字の大きさ
font-family
フォントの種類
text-align
テキストの位置
left, center, right のいづれかを指定
margin
枠線(ボックス)の外側の余白の幅
padding
枠線(ボックス)の内側の余白の幅
border-width
枠線(ボックス)の線幅
border-color
枠線(ボックス)の色

CSSの単位

BODY {
	color: white;
	background: #FF0000;
	margin-left: 10%;
	padding-left: 1cm;
	margin-right: 15%;
	padding-right: 1cm;
	border-width: 2;
}

H1 {
	color: green;
	font-size: 20pt;
	font-family: sans-serif;;
}
上のCSSを使ったページ

参考


prev | next
index | home
abe@injapan.net