.price の意味がわかりません。
こんにちは、
WEBの勉強をしています。
以下のようなタグ打ちの中で、(雑誌WEBデザインより)
a { font-weight: bold; }
.price { font-size: 10pt; font-weight: bold; color: #c00; }
.pc { font-size: 10pt; }
.desc { font-size: 10pt; }
の箇所の、.price 、.pc、 .descの意味がわかりません。
とほほなどのサイトで調べましたがよくわかりませんでした。
何かお分かりの方がいましたら教えてください。 よろしくお願いします。
以下、内容
<title>表の内容をJavaScriptで自動生成する</title>
<style type="text/css">
省略
p { margin: 15px; }
img { border-width: 0; }
img.fl-lt { margin-right: 10px; margin-bottom: 10px; float: left; border: 1px solid #999; }
a { font-weight: bold; }
.price { font-size: 10pt; font-weight: bold; color: #c00; }
.pc { font-size: 10pt; }
.desc { font-size: 10pt; }
</style>
<script type="text/javascript">
<!--
iTblCnt = 6;
iTbl = new Array(
"A行の内容",
"B行の内容",
"C行の内容",
"D行の内容",
"E行の内容",
"F行の内容"
);
iTblColor = new Array("silver","white");
// -->
</script>
</head>
<body>
<table>
<script type="text/javascript">
<!--
for(iCnt=0; iCnt<iTblCnt; iCnt++) {
document.write(
"<tr><td style='background:",
iTblColor[iCnt%2],
"'>",
iTbl[iCnt],
"</td></tr>"
);
}
// -->
</script>
</table>
</body>
</html>
お礼
ありがとうございますっ。 では、明日行ってみようと思います。 いいものがあるといいなー。