蛙の井戸見聞記 Pretty frog in a well who knows nothing of the great web ocean!

~~ 好奇心は猫をも殺す Curiosity Kills the Cat ~~ ♪欲しいモノ・食べたいモノ・ネットで集めた情報と日々の記録の倉庫♪ Logging my life... Since 2003.12  

スタイルシートの設定

bodyタグの中の設定やそのほかのタグの設定を一気に決めたり、あるいは、classで色とか指定しておくと、統一感のあるホームページを作成することができる。

例:
/* bodyタグの設定 */
body { 
	background-color	: #FFFFFF;
	color	:	#000000;
	margin	:	0pt;
 }
/*  リンクの設定 */
    a:link { color: blue }
    a:visited { color: green }
    a:active { color: yellow; }
	a:hover { background-color:orange; }
/* そのほかのタグの設定 */
p{
    text-indent: 1em; 
    margin-bottom: 0em;
}
/* classの指定 */
.some_class_name {
	background	:	green;
	color	:	red;
}