Jump to content
  • 0

Повтор изображения


morocko
 Share

Question

Здравствуйте, вроде я не чайник в css но что-то не могу понять, я прописал:

html, body {
background: url("{T_THEME_PATH}/images/bg_body.gif") repeat-x top #FFFFFF;
}

и изображение стало не целиком а слоями. пример и изображении, что это может быть?

htmlbook.jpg

Link to comment
Share on other sites

17 answers to this question

Recommended Posts

  • 0

и куда я должен по вашему вставить код?

Вместо бэкграунда, который вы хотели подключить.

вставил, и все поплыло!

Что куда поплыло?

Вместо

background: url("{T_THEME_PATH}/images/bg_body.gif") repeat-x top #FFFFFF;

Вставляете


background: #049b9b;
background: -moz-linear-gradient(top, #049b9b 0%, #ffffff 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#049b9b), color-stop(100%,#ffffff));
background: -webkit-linear-gradient(top, #049b9b 0%,#ffffff 100%);
background: -o-linear-gradient(top, #049b9b 0%,#ffffff 100%);
background: -ms-linear-gradient(top, #049b9b 0%,#ffffff 100%);
background: linear-gradient(top, #049b9b 0%,#ffffff 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#049b9b', endColorstr='#ffffff',GradientType=0 );

Еще можно указать размер фона через background-size

Link to comment
Share on other sites

  • 0

Почитайте про линейные градиенты: http://htmlbook.ru/css3-na-primerakh/lineinyi-gradient

Там же есть ссылка на генератор градиентов, облегчающий процесс создания и описания CSS-свойств градиентов

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