Jump to content
  • 0

background-position


Crow
 Share

Question

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style>
.tebody {
width: 100%;
height: 100%;
background-image: url(/img/design/nights/back.jpg); /* Путь к фоновому рисунку */
background-position: center center; /* Положение фона */

}
</style>
<title></title>
</head>
<body>
<div class="tebody">
</div>
</body>
</html>

простая страничка

что нужно: чтобы картинка бекграунда становилась в центр экрана и от центра начинала повторяться по обеим осях во всех направлениях

firefox - работает

ие7 - работает

ие6- не работает, становится в верхний левый угол и повторяется оттуда.

http://htmlbook.ru/css/background-repeat.html

в спецификации указано, что стиль работает в ие6......что у меня не так?

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>

<head>
<title></title>
<style type="text/css">
/*<![CDATA[*/
html, body {
margin: 0;
padding: 0;
border: none;
height: 100%;
}
div {
background: silver;
height: 100%;
margin-left: 50%;
}
#top {
height: 50%;
background: #fff;
margin: 0;
}


/*]]>*/
</style>
</head>

<body>
<div>
<div id="top"></div>
</div>
</body>

</html>

так не покатит ?

Link to comment
Share on other sites

  • 0

а если так ?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>
<title></title>
<style type="text/css">
/*<![CDATA[*/
html {
background-image: url(SplashScreen.bmp);
background-position: center center;
}

/*]]>*/
</style>
</head>

<body>

</body>

</html>

Link to comment
Share on other sites

  • 0

вот так работает

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
<style>
BODY {

background-image: url(/img/design/nights/back.jpg); /* Путь к фоновому рисунку */
background-position: 50% 50%; /* Положение фона */
background-position: center center; /* Положение фона */
}
</style>
<title></title>
</head>
<body>
</body>
</html>

ничего не понимаю..... указать позиционирование двумя способами....причем любой из них корректно работает в файре и ие7....в ие6 только если указать вот так...

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