<body>
<acctctrls>
<a href="http://www.some-link.com/">Link inside acctctrls tag</a>
</acctctrls>
<a href="http://www.some-link.com/">Link outside acctctrls tag</a>
</body>
acctctrls タグ内の <a> タグが次の css に従うようにします。
a
{
color: #C20000;
font-size: 12px;
font-weight:600;
text-align:center;
}
acctctrls タグの外側の <a> タグがこの CSS に従うようにします。
a
{
text-decoration: none;
font-style: normal;
color: #D0D0D0;
}
a:hover
{
text-decoration: none;
font-style: bold;
color: #EEEEEE;
}