Jump to content
  • 0

сдвиг в списке.


koreshs
 Share

Question

Вот задался задачкой.

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

Пример:

_______Категория1

_____Категория2

___Категория3

_Категория4

HTML:

<li>Категория1</li>

<li>Категория2</li>

<li>Категория3</li>

<li>Категория4</li>

чтоб небыло индификаторов номера строчки списка или типа того внутри списка.

Есть предложения к задачке?

Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0
А CSS2 или CSS3 тоже не в состоянии?

можно, но только вот так:

<html>
<head>
<style>
ul {
list-style:none;
}
</style>
</head>
<body>
<ul>
<li>текст1</li>
<li>
<ul>
<li>текст2</li>
<li>
<ul>
<li>текст3</li>
<li>
<ul>
<li>текст4</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</body>
</html>

Link to comment
Share on other sites

  • 0
можно, но только вот так:

[

всмысле наоборот:

<html>
<head>
<style>
ul {
list-style:none;
}
</style>
</head>
<body>
<ul>
<li>
<ul>
<li>
<ul>
<li>
<ul>
<li>text1</li>
</ul>
</li>
<li>text2</li>
</ul>
</li>
<li>text3</li>
</ul>
</li>
<li>text4</li>
</ul>
</body>
</html>

Спасибо ОГРОМНОЕ.

значит так будем делать

А подскажите как изменять эту разницу в отступах?

_______________text1

____________text2

_________text3

______text4

___text5

Link to comment
Share on other sites

  • 0
всмысле наоборот:

Если честно, то у меня уже под конец рабочего дня мозги не варят, но вышло вот так грязненько:

<html>
<head>
<style>
ul {
list-style:none;
margin:0;
padding:0;
}
ul li ul {
margin-left:70px;
}
ul li ul li{
margin-left:50px;
}
ul li ul li ul li{
margin-left:30px;
}
ul li ul li ul li ul li{
margin-left:10px;
}
</style>
</head>
<body>
<ul>
<li>
<ul>
<li>
<ul>
<li>
<ul>
<li>text1</li>
</ul>
</li>
<li>text2</li>
</ul>
</li>
<li>text3</li>
</ul>
</li>
<li>text4</li>
</ul>
</body>
</html>

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