Question

I am the proud owner of http://rubin.cf, freshly loaded with Bootstrap, and some custom css (google fonts). Is there a way to make all place-holder links (something) to be red? I only want links which point to # to be red

Was it helpful?

Solution

You could use an attribute selector like:

a[href="#"] {
    color:red;
}

jsFiddle example

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top