Last Updated 2019/02/06
Programming Tips Web  索 引 
スタイルシートの書き方
2019/02/06

スタイルシートは以下の3通りの書き方がある。

その1
<head>
<style type="text/css">
<!--
    .colorRed { color: #ff0000; }
    .colorBlue { color: #0000FF; }
-->
</style>
</head>


その2
<span style="color: #ff0000;"></span>


その3
<head>
<link rel="stylesheet" href="/css/common.css" type="text/css">
</head>


参照


コメントする
前後のTips
スタイルシートの書き方

DSS ProgrammingTipsCGI Ver2.02