Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<style>
a.a:link,a.a:visited
{
display:block;
width:120px;
font-weight:bold;
color:#ff7100;
background-color:#98bf21;
text-align:center;
padding:4px;
text-decoration:none;
text-transform:uppercase;
}
</style>

<a class='a' href="">link</a>

for some reason when color:#ff7100; gets another # when the link is clicked it changed to orange then sends you to the page u linked to but if the extra # is not there its just another normal link.. i find this strange because i have never seen this before any one have an explination?

share|improve this question
Why do your a elements have a class called a? – Oded Jan 20 at 20:45
That should be <style> not <script> . – Cristy Jan 20 at 20:45
they have a class called a because i have a nav bar im going a-b with my website each div or any thing that needs css has its own class to it and srry the script thing was a typo – Jacob Anthony Tonna Jan 20 at 20:47
When it's clicked? So you mean it's an active link ? There are 4 link CSS properties, :link :active :hover :visited – Jeremy Jan 20 at 20:54
yes when it is active it flickers – Jacob Anthony Tonna Jan 20 at 20:56
show 1 more comment

1 Answer

up vote 0 down vote accepted

That should be <style> not <script> . You should not use empty href tags, the usual is to use # instead (empty hashtag).

That may be because when you click on a lick it actually goes in it's active state, so you also have to define css for a:active

Try this selector instead:

a.a:link,a.a:visited,a.a:active,a.a:hover
share|improve this answer
i fixed the typos and the links on my actual page are not empty but this is still annoying me because the link flashes when its clicked if it has an extra # – Jacob Anthony Tonna Jan 20 at 20:50
Create an example on www.jsfiddle.net which reproduces that error. – Cristy Jan 20 at 20:51
See my updated answer. – Cristy Jan 20 at 20:55
ok here it is jsfiddle.net/VvRQX i looked under google chrome and it dosent flicker it flickers on safari.. i dont know why – Jacob Anthony Tonna Jan 20 at 20:55
You have an extra '#' after color, remove it. – Cristy Jan 20 at 20:56
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.