Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove text-decoration underline, for a:after in css [duplicate]

Possible Duplicate:
“text-decoration” and the “:after” pseudo-element
“text-decoration” and the “:after” pseudo-element, revisited

I am making a navigation links using <a> tags Following is the html

<div class="nav_container">
    <a class="panel" href="demolink">menu1</a>
    <a class="panel" href="demolink">menu2</a>
    <a class="panel" href="demolink">menu3</a>
</div>

And applying the :after css property to put a pipeline for the divider

.panel:after{
    content:"|";
    margin-left: 4px;
    margin-right: 4px;
}
.panel:last-child:after{
    content:"";
}

I want to put underline when the menu is selected for that I am applying a class called selected

.panel.selected {
    text-decoratoion:underline;
}

But the problem is The pipline after menu "|" is also having the underline and I want to remove it. I even tried to change the css for .panle:after as follows,

.panel:after{
    content:"|";
    margin-left: 4px;
    margin-right: 4px;
    text-decoration:none;
}

But still the underline is there.

Any suggestion, Thank you.

like image 452
Prathamesh mhatre Avatar asked Nov 01 '12 06:11

Prathamesh mhatre


3 Answers

Try this one:

.panel:after {
    display:inline-block;
}

Or use the following:

.panel {
  display: inline-block;
  vertical-align: top;
  position: relative;
  color: black;
  font-size: 14px;
  font-weight: bold;
  margin: 0 5px;
}

.panel:after {
  content: '';
  border-left: solid 2px red;
  left: -10px;
  top: 2px;
  height: 10px;
  position: absolute;
}

.panel:first-child:after {
  display: none;
}

.panel:hover {
  text-decoration: none;
}
<div class="nav_container">
  <a class="panel" href="demolink">menu1</a>
  <a class="panel" href="demolink">menu2</a>
  <a class="panel" href="demolink">menu3</a>
</div>
like image 84
Rohit Azad Malik Avatar answered Oct 23 '22 12:10

Rohit Azad Malik


you can use one another method also for your question :- demo

I have tried with minimized code :-

HTML

<div class="nav_container">
    <a href="demolink">menu1</a>
    <a href="demolink">menu2</a>
    <a href="demolink">menu3</a>
</div>

CSS

.nav_container a {
color:red;
display:inline-block;
}
.nav_container a + a{
color:red;
border-left:1px solid red;
padding-left:7px;
line-height:12px;
}
like image 27
Shailender Arora Avatar answered Oct 23 '22 10:10

Shailender Arora


I don't exactly know what your .panel.selected {} part does. However you can make the link underlined when it is focused by using this.

.panel:focus {text-decoration:underline;}

And you can remove the underline from links and pipes(|) like this.

.panel:link {text-decoration:none;}

Add above two in to your page and check.

like image 1
prageeth Avatar answered Oct 23 '22 12:10

prageeth