<body>に…
-
0 名前: ミスター : 2005/09/20 13:11
- bodyタグにstylesheetは使えますか?
-
1 名前: みんみ : 2005/09/20 13:11
- できますよ。
例えばこんな感じ。
http://www.tagindex.com/stylesheet/page/background_color.html
-
2 名前: ミスター : 2005/09/20 13:11
- みんみさん、質問が悪かったです。すみません。classが使えるかどうかです。
-
3 名前: みんみ : 2005/09/20 13:11
- 使えますよ。
http://www.tohoho-web.com/html/body.htm
でもこれくらいなら、テストで自分でやってみたら
良いんじゃないかしら?
こんな感じで。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<meta http-equiv="Content-Style-Type" content="text/css">
<title></title>
<style type="text/css">
<!--
body {
margin: 0;
}
.test {
background-color: #CFC8C1;
color: #565656;
font-weight: bold;
padding:20px;
}
-->
</style>
</head>
<body class="test" >
<p>test</p>
</body>
</html>
-
4 名前: ミスター : 2005/09/20 13:11
- ありがとうございました。参考にさせていただきます。