Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have a href with class="button"

I am trying to style this like that:

.button a:link {text-decoration: none} 
.button a:visited {text-decoration: none} 
.button a:active {text-decoration: none} 
.button a:hover {text-decoration: none; background-color:yellow;color:blue}

why it is not working? how to set stye for a href with that class (class="button")

share|improve this question
Put semicolon after each property.. – Misam May 2 '11 at 11:18
3  
@Misam. The last property in a css rule does not need semicolons. – Caspar Kleijne May 2 '11 at 11:19
Oh..thats Gr8..I never knew about that..Thanks. – Misam May 2 '11 at 11:21
2  
@Caspar, while that's certainly true it does prevent subsequent issues/problems if it's remembered to use the semi-colon. – David Thomas May 2 '11 at 11:21
@Caspar you are right, but it looks so incredibly ugly and inconsistent. – rightfold May 2 '11 at 11:27

4 Answers

up vote 8 down vote accepted

.button a is a descendant selector. It matches all <a> tags that are descendants of .button.

You need to write a.button:link to match tags that are both <a> and .button.

share|improve this answer

.button a{} is a rule for

<something class="button">
   <a href="">foobar</a>
</something>

a.button{} is a rule for

<a href="" class="button">foobar</a>
share|improve this answer
how could i set for example a rule for a:link in that case ('.button a{}')? – Joper May 2 '11 at 11:32
oh ... then you simply write .button a:link {} – tereško May 2 '11 at 11:36
it is first thing i was try, but it is not working, it is working only that way a.button:link – Joper May 2 '11 at 11:43

please share the html markup as well.

is button the class attribute of the anchor element or is the a tag a child of an element with class button ?

if its the former case, use

a.button:link { } etc

if its the later, your code is correct

share|improve this answer

Because you have said:

"An a element with the pseudo-class :blah that is a descendent of any element"

You want:

a.button:link { /* etc */
share|improve this answer

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.