Jump to content
  • 0

Найти решение


zefo
 Share

Question

Господа, помогите пожалуйста найти оптимальное решение:

Есть меню, между линками разделительная полоса (правый бордер), не получается найти элегантное решение что бы после последнего линка разделительной полосы не было...


css:

.mattblacktabs ul{
margin: 0;
padding: 40px 0 0 450px;
font: bold 12px Verdana;
list-style-type: none;
}

.mattblacktabs li{
display: inline;
margin: 0;
}

.mattblacktabs li a{
float: left;
display: block;
text-decoration: none;
margin: 0;
padding: 7px 8px;
border-right: 1px solid white; /*разделитель*/
color: white;
}

.mattblacktabs li a:visited{
color: white;
}

.mattblacktabs li a:hover, .mattblacktabs li.selected a {
background: #003460;
}

html:
<div class="mattblacktabs">
<ul>
<li><a href="index.php" class="active">Home</a></li>
<li><a href="index.php">News</a></li>
<li><a href="index.php">Solutions</a></li>
<li><a href="index.php">Download</a></li>
<li><a href="index.php">Careers</a></li>
<li><a href="index.php">Contact and register</a></li>
</ul>
</div>

Link to comment
Share on other sites

13 answers to this question

Recommended Posts

  • 0

1. Добавить класс к последнему пункту, для него указать border-right: none;

2. Если число пунктов фиксированно, то можно добавить в стиле a:nth-child(6) {} или a:nth-last-child(1) {}

3. Лучше a:last-child {}

Link to comment
Share on other sites

  • 0

Такие вещи решаются по другому немножко. Всем ссылкам ты ставишь разделитель слева, а у первого с помощью :first-child; отменяешь. Это кросс правильное решение. ИЕ6 я в расчёт не беру.

Link to comment
Share on other sites

  • 0

Что то у меня не получается first-child применить

http://jsfiddle.net/DqZT8/

То есть видно что определятся правильно, специально поменял шрифт, но border:none; отработать не хочет... А понять почему не могу...

http://jsfiddle.net/DqZT8/1/

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  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.

 Share

×
×
  • 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. See more about our Guidelines and Privacy Policy