Jump to content
  • 0

Вопрос касательно списка


GaDiV
 Share

Question

Здравствуйте. В ходе работы над маркерованым списоком возникла следующая ситуация:

Есть маркерованный список у которого всего 4 строки, с помощью css я заменил стандартные маркеры на картинки и у каждой строки они одинаковые, а мне нужно, что бы у первой строки списка был маркер одного вида, для второй строки - второго вида и так далее, возможно ли такое усуществить с помощью css? Если возможно, подскажите плиз как.

Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0

Я что-то не понял... чем это:


li{
font-size:38px;
background:url(images/medals.png) no-repeat;
padding-left:24px;
}

li+li{
font-size:32px;
background-position:0 -44px;
}

li+li+li{
font-size:28px;
background-position:0 -88px;
}

li+li+li+li{
font-size:16px;
background:none;
}

отличается от этого:


li {
font-size:38px;
background:url(images/medals.png) no-repeat;
padding-left:24px;
}

li.two {
font-size:32px;
background-position:0 -44px;
}

li.three {
font-size:28px;
background-position:0 -88px;
}

li.four {
font-size:16px;
background:none;
}

Link to comment
Share on other sites

  • 0

SelenIT, так я и думал, запутал человека...


ul {
list-style: none;
}

li {
font-size:38px;
background:url(images/medals.png) no-repeat;
padding-left:24px;
}

li.two {
font-size:32px;
background-position:0 -44px;
}

li.three {
font-size:28px;
background-position:0 -88px;
}

li.four {
font-size:16px;
background:none;
}


<ul>
<li>test</li>
<li class="two">test</li>
<li class="three">test</li>
<li class="four">test</li>
</ul>

Link to comment
Share on other sites

  • 0

SelenIT, так я и думал, запутал человека...


ul {
list-style: none;
}

li {
font-size:38px;
background:url(images/medals.png) no-repeat;
padding-left:24px;
}

li.two {
font-size:32px;
background-position:0 -44px;
}

li.three {
font-size:28px;
background-position:0 -88px;
}

li.four {
font-size:16px;
background:none;
}


<ul>
<li>test</li>
<li class="two">test</li>
<li class="three">test</li>
<li class="four">test</li>
</ul>

Огромное всем спс за помощь.

P.S жаль, что IE усложняет так верстку

Link to comment
Share on other sites

  • 0

Опять возникла проблема с IE, суть в следующем:

Я заменил стандартные маркеры на свои, мне нужно, что бы при наведении на 1ю строку списка (на каждую строку своя ссылка) менялся маркер (в опера и firefox всё нормально, там я делал через :before, в IE не поддерживается:( ), в IE я попробовал описать по выше указанному методу для псевдоэлемента :hover, но вместо того, чтобы меняться, маркеры выстраиваются в строку, это как то можно решить или вообще невозможно?

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