Jump to content

anchor tag


phpmady

Recommended Posts

Hi,

 

<span class="other_items">

<p>

<a href="">asdfdsafdsaf dsafsdaf sdafds</a>

</p>

</span>

 

 

how to write the css for above content, i tried this below css style but it fails for anchor tag inside the paragraph

Note: i dont want to  write <a href="" class="other_items">asdfdsafdsaf dsafsdaf sdafds</a>  in the above.

 

 

<style type="text/css">

p a.other_items:link {text-decoration: none; color:red;}

p a.other_items:visited {text-decoration: none; color:red;}

p a.other_items:active {text-decoration: none; color:red;}

p a.other_items:hover {text-decoration: none; color:red;}

</style>

 

 

Please give me some solution

 

Thanks guys,

 

 

Link to comment
Share on other sites

<span class="other_items">
<p>
<a href="">asdfdsafdsaf dsafsdaf sdafds</a>
</p>
</span>

 

This should work:

<style type="text/css">
.other_items p a:link {text-decoration: none; color:red;}
.other_items p a:visited {text-decoration: none; color:red;}
.other_items p a:active {text-decoration: none; color:red;}
.other_items p a:hover {text-decoration: none; color:red;}
</style>

 

It was a basic syntax error.

 

Hope this helped.

 

E

Link to comment
Share on other sites

The Letter E was mostly correct, with one tiny little problem. It should be this:

 

<style type="text/css">
.other_items p a:link {text-decoration: none; color:red;}
.other_items p a:visited {text-decoration: none; color:red;}
.other_items p a:hover {text-decoration: none; color:red;}
.other_items p a:active {text-decoration: none; color:red;}
</style>

 

The order of pseudo selectors needs to be link -> visited -> hover -> active. This is easy to remember with LoVeHAte: LinkVisitedHoverActive. If you don't do it in this order, you will find strange things happening in some browsers, and it can be really difficult to debug.

Link to comment
Share on other sites

The Letter E was mostly correct, with one tiny little problem. It should be this:

 

<style type="text/css">
.other_items p a:link {text-decoration: none; color:red;}
.other_items p a:visited {text-decoration: none; color:red;}
.other_items p a:hover {text-decoration: none; color:red;}
.other_items p a:active {text-decoration: none; color:red;}
</style>

 

The order of pseudo selectors needs to be link -> visited -> hover -> active. This is easy to remember with LoVeHAte: LinkVisitedHoverActive. If you don't do it in this order, you will find strange things happening in some browsers, and it can be really difficult to debug.

 

Thanks for the correction. I was unaware of that order. :)

Link to comment
Share on other sites

<span class="other_items">
<p>
<a href="">asdfdsafdsaf dsafsdaf sdafds</a>
</p>
</span>

 

This should work:

<style type="text/css">
.other_items p a:link {text-decoration: none; color:red;}
.other_items p a:visited {text-decoration: none; color:red;}
.other_items p a:active {text-decoration: none; color:red;}
.other_items p a:hover {text-decoration: none; color:red;}
</style>

 

It was a basic syntax error.

 

Hope this helped.

 

E

 

Thanks Letter E, really embarassing  for me,

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.