ポコ・ア・ポコ パソコン教室は・・・ホームページを作ろう
ホームページを作るにはCSSを勉強しなければいけない。
解りやすく、CSSの具体例で説明します。
小さな大文字の実験
My Favorite Thing
My Favorite Thing
<head>
<style type="text/css">
<!--
.small {
font-variant:small-caps;
border:maroon 6px outset;
background:maroon;
color:white;
text-align:center;
}
-->
</head>
<body>
<p class="small" >My Favorite Thing</p>
</body>
