質問

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

役に立ちましたか?

解決

You could use an attribute selector like:

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

jsFiddle example

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top