Jump to content
  • 0

Выравнивание по центру изображения с absolute


Elmirill
 Share

Question

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

В верстке новичок, возникла необходимость выровнять картинку с position:absolute по центру. Кроме этого, картинка вписана в окно браузера, и масштабируется с сохранением пропорций. Если убрать absolute, получается выровнять с помощью text-align:center; Но без absolute она некорректно отображается в опере, ие и мозилле.

Помогите советом.

Код:

<STYLE type="text/css">

*{padding: 0; margin: 0;}

body, html {height: 100%;}

#soon {

/* Set rules to fill background */

height: 100%;

min-width: 640px;

min-height: 480px;

/* Set up proportionate scaling */

height:100%;

/* Set up positioning */

z-index: -1;

position: absolute;

}

</STYLE>

</HEAD><BODY>

<IMG id="soon" src="soon.png">

</BODY></HTML>

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

1. Обрамляйте код публикуемый тут в спецтэги при помощи кнопочки "код" над формой ввода.

2. Что именно некорректно отображается без absolute? Попробуйте убрать absolute, поставить display:block; и margin: 0 auto;

3. По спецификации нельзя помещать строчный элемент прямо в body, нужен обрамляющий блочный элемент.

3. Вот так вроде все корректно:

<!DOCTYPE html>
<html>
<head>
<title></title>

<style type="text/css">
*{padding: 0; margin: 0;}

body, html {height: 100%;}

#container {
height:100%;
}

#soon {
/* Set rules to fill background */
display: block;
margin: 0 auto;
min-width: 640px;
min-height: 480px;

/* Set up proportionate scaling */
height:100%;

/* Set up positioning */
z-index: -1;
}
</style>
</head>

<body>
<div id="container">
<img id="soon" src="img/bg.jpg">
</div>
</body>
</html>

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