Jump to content
  • 0

Вертикальная полоска с помощью div


nouqart
 Share

Question

6 answers to this question

Recommended Posts

  • 0
Добрый день, подскажите как сделать резиновую вертикальную полоску.

PS так же порадуюсь ссылоскам на учебники по div блокам.

А можно поподробней что у вас не получается? Просто растянуть div по вертикале(в процентах или пикселях?), задать ему цвет или что?

Link to comment
Share on other sites

  • 0
<style type="text/css">
.block1 {
background-color: #ff7800;
width: 8px;
height:100%;
}
</style>

не понимаю почему не вытягивает...

Да как Vlad уже написал для того чтобы block1 растянулся на 100% высоты родителя у этого самого родителя она должна быть...

Если страница выглядит как:

<html>
....
<body>
<div class="block1"></div>
</body>
</html>

То в этом случаи в css надо добавить html, body { height:100%; }

Link to comment
Share on other sites

  • 0

Спасибо ребят разобрался. Добавил позиционирование.

<style type="text/css">
.block1 {
background: #FF6600;
width: 8px;
height: 100%;
position: absolute;
left: 10px;
top: 0px;
}
</style>

Странно что заданный мною цвет не отображался, решил проблему подогнав мой цвет к безопасным цветам)

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