Jump to content
  • 0

пунктирное подчеркивание у ссылки


top-top
 Share

Question

Нужно сделать, чтобы у ссылки было подчеркивание пунктирной линией. Делаю так:

a {
display:block;
border-bottom: 1px dashed white;
text-decoration:none;
padding:2px;
padding-top:20px;
color: #ffffff;

}

Но тогда пунктирная линия растягивается на всю ширину, а не только под текстом. Как сделать, что бы подчеркивался только текст ссылки?

Заранее, спасибо :blink:

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0
задай верхние и нижние отступы li, а правые и левые у самой ссылки

То же не подходит, у li есть нижний border.

И если убрать display:block, то ссылка прилипает к нижней границе li.

Выглядеть меню должно так http://lenblokada.ru/m.jpg

Link to comment
Share on other sites

  • 0

Братский подгон :blink:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Контент2</title>
<style type="text/css">
*{ margin: 0; padding: 0;}
ul {
list-style: none;
width: 160px;
padding: 15px 15px;
background: #0169b2;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
margin: 20px;

}
ul li { border-top: 1px solid #1c7dc4; padding: 5px 0 10px; }
ul li:first-child{ border:none; }
ul li a {
text-decoration: none;
border-bottom: 1px dashed #3fa9f3;
font-size: 16px;
color: #d9ffff;
}
</style>
</head>
<body>
<ul>
<li><a href="#">Главная</a></li>
<li><a href="#">Общая информация</a></li>
<li><a href="#">Участие</a></li>
<li><a href="#">Спонсоры</a></li>
<li><a href="#">Энергетика ХХI - 2008</a></li>
<li><a href="#">Контакты</a></li>
</ul>

</body>
</html>

Edited by psywalker
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