参考:https://www.nxworld.net/tips/hr-css-design.html
<hr size="1" width="50%" color="#ff0000">
これがサポートされていない旧バージョンでは:
<html>
<header>
<TITLE></TITLE>
<style type="text/css">
hr.gray {
height: 1px;
background-color: #aaaaaa;
border: none;
color: #aaaaaa;
}
</style>
<\header>
<body>
<hr width="75%">
<hr width="60%" class="gray">
|
|