Jump to content
  • 0

Растягивание фона блока


flintovich
 Share

Question

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

Картинку фона блока прилагаю.

1334299410_sidebarl.png

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

Можно border-redius'ом скруглить углы блока, можно нижнюю часть изображения вырезать и вставить фоном в пустой div.

Вариант с изображениями выглядит примерно так:

sidebardes.png

В sidebar-header и sidebar-bottom фон не повторяется, в sidebar-main повторяется по вертикали.

Edited by Vin
Link to comment
Share on other sites

  • 0

Можно border-redius'ом скруглить углы блока, можно нижнюю часть изображения вырезать и вставить фоном в пустой div.

Вариант с изображениями выглядит примерно так:

sidebardes.png

В sidebar-header и sidebar-bottom фон не повторяется, в sidebar-main повторяется по вертикали.

Спасибо, именно то что нужно.

Вот только не могли бы вы показать как это делается кодом. А то новичку осиливать это трудновато.

Link to comment
Share on other sites

  • 0

Спасибо, обязательно прочту.

Нет, все проще, текст под часами. Вот картинку сделал как хочется. Только конечно, чтобы сохранялись края.

sidebarl2.png

Edited by flintovich
Link to comment
Share on other sites

  • 0

Опять же, вариант примерный, но думаю, подойдёт.

HTML:

<div class="sidebar">
<div class="sidebar-header"></div>
<div class="sidebar-main">
<div class="sidebar-text">
<h2>Lorem Ipsum</h2>
<p>Lorem Ipsum dolor sit amet</p>
</div>
</div>
<div class="sidebar-bottom"></div>
</div>

CSS:


.sidebar-header {
background: url(img/sidebar-heaeder-bg) no-repeat;
}

.sidebar-main {
background: url(img/sidebar-main-bg) repeat-y;
}

.sidebar-text {
margin-top: -10px; /* Отрицательный отступ для того, чтобы текст залез на блок с градиентом (sidebar-header) */
}

.sidebar-bottom {
background: url(img/sidebar-bottom-bg) no-repeat;
}

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