Jump to content
  • 0

Назначение отступов у ссылок


aqua.77
 Share

Question

Имеется таблица со списком ссылок. Список имеет ширину 10%. Как сделать чтобы отступы ссылок совпадали с шириной списка?

  <nav>
  <ul>
  <li><a href="uslugi.html">Услуги</a></li>
  <li><a href="klienti.html">Клиенты</a></li>
  <li><a href="projekt.html">Проекты</a></li>
  <li><a href="kontact.html">Контакт</a></li>
  </ul>  
  </nav>      
nav{
 
    display: table;
        border-spacing: 10px;
}
ul{
         display: table-row;
}
li{
    display: table-cell;
    background:       red;
  width: 10%; //Нужно чтобы отступы были точно такими
  text-align: center;
}
a{
    text-decoration: none;
    padding: 0px 10% 0px 10%; //Пробовал сделать такой же отступ, но ширине не соотведствует.
}

 

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0
1 час назад, alejandro13 сказал:

понятнее

Элемент списка 10% ширину имеет. 

li{
    display: table-cell;
  width: 10%; //Вот
}

Нужно чтобы ссылка в этом элементе имела отступ как ширина элемента, чтобы заполнять ширину элемента

a{
    text-decoration: none;
    padding: 0px 10% 0px 10%; //Пробовал сделать такой же отступ, но ширине не соотведствует.
}

 

Link to comment
Share on other sites

  • 0
1 час назад, Igor Schnaider сказал:

Чтобы ссылка заполнила ширину, ей достаточно display: block назначить.

Cпасибо!! то что надо.:) Вот где можно все эти элементы узнать? в справочниках? может книга какая?

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