<html lang="ja">
<head>
<meta http-equiv="content-type" charset="UTF-8">
<style type="text/css">
body {
background-color: #c0c0c0;
}
p1 {
background: linear-gradient(transparent 10%, yellow);
}
p2 {
background: linear-gradient(transparent 10%, pink);
}
p3 {
background: linear-gradient(transparent 10%, lightgreen);
}
</style>
</head>
<body>
<p1><font size="6">この文章には黄色のアンダーラインが引かれます。</font></p1><br>
<p2><font size="6">この文章にはピンク色のアンダーラインが引かれます。</font></p2><br>
<p3><font size="6">この文章には黄緑色のアンダーラインが引かれます。</font></p3>
</body>
</html>
|