Jump to content
  • 0

Равномерно расставленные слова


GooDMeister
 Share

Question

Вобщем. Есть линия. Длинною в 100% от экрана юзера. Есть меню. Оно занимает... примерно 15% ширины экрана. Меню состоит примерно из 10ти пунктов.

Вопрос:

Как сделать так чтобы меню равномерно распределило все пункты на всю ширину экрана. А не стояло где-то скраюшку как бедный родественник.

Заранее спасибо B)

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Ну табличкой, или если нос воротим, то дивами с width равной 100%/кол-во пунктов, т.е. в данном случае 10%.

№1

<style>
table {width:100%;}
</style>

<table>
<tr>
<td>1</td>
<td>2</td>
...
<td>10</td>
</tr>
</table>

№2

<style>
div {width:10%;float:left;}
</style>

<div>1</div>
<div>2</div>
...
<div>10</div>

Это если без надмозгов.

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