在这里,我有一些来自我正在制作的网站的代码。我在样式化 CSS 中的链接时遇到问题。我不确定为什么他们不会改变。另外,我使用类的原因是因为我将这段代码重复了 4 次(不要担心为什么:P)顺便说一句,我也尝试将 'a' 放在 .profileLinks 前面,但也不起作用 :(
这是外部 CSS 样式表
#trends .profileLinks a:link{
color:#0000FF;
text-decoration:none;
background: transparent;
}
#trends .profileLinks a:visited {
text-decoration: none;
color: #0000FF;
background: transparent;
}
这是HTML代码
<div id="trends">
<h1> Trends... </h1>
<a href="#" title="Profile Image"><img src="logo.png" alt="Profile Image" height="59" width="68"> </a>
<a class="profileLinks" href="#" title="User's Profile Name"> Mark Fonacier </a>
<a class= "commentLinks" onClick ="javascript:ShowHide('HiddenDiv')" href="javascript:;" ><i>Comment</i></a>
<br/>
<p>
PostPostPostPostPostPostPostPostPostPostPostPostPostPostPostPostPostPostPostPostPostPostPostPostPostPost
</p>
<a onClick ="javascript:ShowHide('HiddenDiv')" href="javascript:;" ><i>Comment</i></a>
<div class="mid" id="HiddenDiv" style="DISPLAY: none" >
<form method="post" action="">
<textarea name="comments" cols="60" rows="2" placeholder="Enter your comments here..." maxlength="1000">
</textarea>
<input type="submit" value="Submit" />
</form>
</div>
<br/>