CSSについて触れ始めてから、「わからん。」との指摘をたくさん頂いています が、ま、それはしようがないです。書いてる本人が、CSSに飽きてきているので、 つぎの話題にとりかかるために急いでいるのですから。
<style type="text/css">
<!--
.PageTitle{
color:orange;
background-color:white;
font-size:larger;
font-weight:bold;
text-align:center;
width:400pt;
line-height:30pt;
margin:0px;
border: 1pt solid black}
.PageComment{
color:yellow}
.PageText{
color:white;
background-color:green}
-->
</style>
<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=euc-jp">
<meta http-equiv="Content-Style-Type" content="text/css">
<base target="page">
<link rev="made" href="mailto:sugiura@isp.ne.jp">
<link rel="next" href="../yome/index.html">
<link rel="stylesheet" type="text/css" href="./sample.css">
<title>
CSS Sample
</title>
</head>
<body>
<div class="PageTitle">
タイトル
</div>
<p class="PageText">
本文をここから書いていきます。<br>もしもコメントを途中に入れるときは、
<span class="PageComment">ここがコメントです。</span>
のように入れていきます。
</p>
</body>
</html>
| Go to previous page | Go to next page |