I want to change background of this 2 link
<a href="http://www.domain.com/index.html">
<a href="http://www.domain.com/index.php">
But condition is I can't add any class or Div id here. I can't touch this this html code also. Just I need to add some css from external. I mean in main style.css sheet. Is is possible ? I have tried with this code a { background:url(../images/image.png);} but problem is it's change the whole link's background of the page. But I want 2 different background of the 2 link. Is is really possible. Anyone can help me please :)
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
You can use CSS attribute selectors to only style links with an href that matches the links you supplied. Example:
You could also match all links with an href starting with http://www.domain.com using the following rule
Please check the support as older browser might ignore attribute selectors. |
|||
|
|
|
You need to find a way to differentiate the two links, from the code you posted, they only differ in the url they point to, so you could use this:
|
|||||||||||
|
classorid? You can try to select them looking for parents or childs. – Steve Nov 23 '12 at 17:07