Jump to content
  • 0

повторение фоновых изображений


Волчонок
 Share

Question

Здравствуйте!

У меня такая проблема...

Я задумала сделать страницу на которой по бокам браузера будет идти один и тот же рисунок (только зеркально отраженный) но у меня получается "запустить" его только либо слева либо справа но НИКАК не вместе и там и там!

Я пробовала через css - то есть например:

body

{background-image:url(fon1.gif);

background-repeat:repeat-y;

margin-left:40px}

это - из левой верх точки по оси Y но мне нужно еще и из правой верх точки! но....

Link to comment
Share on other sites

Recommended Posts

  • 0

короче.

Создаем два дива, у них быкграунды - эти рисунки. И флоатим. а в центре, например контент. Или таблицами.

дивы:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<style type="text/css">
body, div {border:0px; margin:0px; padding:0px;}
.left {width: 60px; height:100%; background: url(1.gif) repeat-y; float:left;}
.right {width: 60px; height:100%; background: url(2.gif) repeat-y; float:right;}
</style>
</head>
<body>
<div class=left></div>
<div class=right></div>
</body>
</html>

там где длина там сво? указывайте . и картинку тоже свою.

Link to comment
Share on other sites

  • 0

спасибо)) ....

а у меня еще вопрос - а как лучше реализовать идею "рисованной рамки" вокруг текста? ну то есть чтобы она была не из прямых линий как обычно а такой.....узорно-кривой линией (то есть еще и прерывающейся в некоторых местах).......... =)

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