<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;
}