Jump to content
  • 0

Как сверстать такой фон?


dididima
 Share

Question

13 answers to this question

Recommended Posts

  • 0

1. сам li + ::after и ::before (т.е. для списка делаем фон повторяющийся и псевдоэлементами добавляем левую и правую части изображения с тенями. для IE сгодится экспрешн.

2. экстра-разметка. добавляем 2 элемента, абсолютно позиционируем их по краям li и задаем им фон (либо влаживаем друг в друга, как удобней). Или запросто с конструкцией li>a>span

Edited by zSpx
Link to comment
Share on other sites

  • 0

2Softlink

Меня интересует больше то, как разделить фон на 3 части (ну это я понимаю) и для каких элементов применять как юзать :before :after и т.д

плохо видно, он там с рисунком или просто несколько цветов?

Link to comment
Share on other sites

  • 0

Подскажите почему данный код не работает?

#top-menu li:after {
background: url(img/after.png);
width: 21px;
height: 57px;
}
#top-menu li:before {
background: url(img/before.png);
width: 21px;
height: 57px;
}
#top-menu li {
background: url(img/bg-li.png);
height: 57px;
}

Отображается только фон для li

Edited by dididima
Link to comment
Share on other sites

  • 0

Подскажите почему данный код не работает?

#top-menu li:after {
background: url(img/after.png);
width: 21px;
height: 57px;
}
#top-menu li:before {
background: url(img/before.png);
width: 21px;
height: 57px;
}
#top-menu li {
background: url(img/bg-li.png);
height: 57px;
}

Для псевдоэлементов обязательное свойство content есть. Его надо указать.

Link to comment
Share on other sites

  • 0

А если мне надо пункты в меню выстроить в одну линию как переобразовать данный код?

#top-menu li:after {
background: url(img/after.png) no-repeat;
width: 21px;
height: 57px;
content: '';
display:block;
}
#top-menu li:before {
background: url(img/before.png);
width: 21px;
height: 57px;
content: '';
display: block;
}
#top-menu a {
background:url(img/bg-li.png);
height: 57px;
display:block;
}

Link to comment
Share on other sites

  • 0

Как вариант, вместо block можно inline-block использовать.

Всё-таки совсем без экстра-разметки не получается, может, кто предложит лучше?

Upd.: в порядке курьеза добил вариант без экстра-разметки (заодно поправил для IE9), но копировать его не стоит — логика оформления там никудышняя...

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