Jump to content
  • 0

две картинки в бэкграунд


misterX
 Share

Question

есть две колонки: меню и контент.

в контенте нужно две картинки сделать бэкграундом, при этом так чтобы они были друг под другом. а когда текст в этом блоке превышает высоту двух картинок, то между двумя этими картинками растягивать (одна вверху, другая внизу, посередине белый цвет.)

у кого какие идеи?

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

примерно так:

.content1 {
background:url(images/pic1.gif) top left no-repeat;
}
.content2 {
background:url(images/pic2.gif) bottom left no-repeat;
min-height:100px; /* высота двух картинок */
height:auto;
}
* html .content2 {
height:100px; /* ie6 min-height не понимает. для него надо указывать height */
}

<div class="content1">
<div class="content2">Text</div>
</div>

Link to comment
Share on other sites

  • 0
примерно так:

.content1 {
background:url(images/pic1.gif) top left no-repeat;
}
.content2 {
background:url(images/pic2.gif) bottom left no-repeat;
min-height:100px; /* высота двух картинок */
height:auto;
}
* html .content2 {
height:100px; /* ie6 min-height не понимает. для него надо указывать height */
}

<div class="content1">
<div class="content2">Text</div>
</div>

спасибо большое, работает.

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