Jump to content
  • 0

Расстояние между слов


Вальдемар
 Share

Question

Мне нужно сделать чтобы заголовки были на некотором расстояние.

И лучше чтобы это расстояние можно было регулировать.

Картина у меня в ХТМЛ следующая:

<div class="center">

<div id="font-size" class="container3">

<B>

<a href='index.html'>Главная</a>

<a href='simptomy.html'>Симптомы невроза</a>

<a href='prichiny.html'>Причины невроза</a>

<a href='lechenye.html'>Лечение невроза</a>

</B>

</div>

</div>?

Картина в CSS:

.container3 {

width: 1230px;

margin-top: 20px ;

margin-left: 10px;

margin-bottom: 40px;

}

.center{

text-align: center;

}

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

.container3 a {
margin: 10px 0;
}

Нет, ничего таким макаром не получается...

Кто нибудь - ХЭЛП, SOS!!! =)

Попробуй:

.container3 a {

margin: 10px 0; Внешний отступ сверху, снизу по 10px (попробуй меньше 10, больше 10)

padding: 10px 0; Внутренний отступ сверху, снизу по 10px (попробуй меньше 10, больше 10)

}

Если не работает: Возможно Конфликты Полей, почитайте и про это)

Также можете: Заключить ваши заголовки в параграфы (абзацы - как хотите) <p><a href='index.html'>Главная</a></p> и с ними экспериментировать отступы сверху, снизу:

.container3 p {

margin: 10px 0; Внешний отступ сверху, снизу по 10px (попробуй меньше 10, больше 10)

padding: 10px 0; Внутренний отступ сверху, снизу по 10px (попробуй меньше 10, больше 10)

}

Что то должно подойти, margin? padding? p? Пробуйте)

Link to comment
Share on other sites

  • 0

Решил эту проблему с помощью вставления мини картинок.

Т.е. маленьки стрелочки вставленные между нужными элементами, которые увеличивали расстояние естественным образом)))

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