这样当然不行了,
a:active { font-family: "宋体"; font-size: 10pt}
a:hover { font-family: "宋体"; font-size: 10pt}
a:link { font-size: 10pt}
a:visited { font-family: "宋体"; font-size: 10pt}
被你重复的定义了,如果你要为不同的连接使用不同的样式可以定义成
a.a1:active { font-family: "宋体"; font-size: 10pt}
a.a1:hover { font-family: "宋体"; font-size: 10pt}
a.a1:link { font-size: 10pt}
a.a1:visited { font-family: "宋体"; font-size: 10pt}
a.a2:active { font-family: "宋体"; font-size: 10pt}
a.a2:hover { font-family: "宋体"; font-size: 10pt}
a.a2:link { font-size: 10pt}
a.a2:visited { font-family: "宋体"; font-size: 10pt}
然后
A1A2