Jump to content
  • 0

бокс по центру экрана


bFree
 Share

Question

Есть бокс, который выравнен по центру экрана, однако, если заполнять бокс инфой, то он "устремляется вниз", т.е. свеху пусто, а от центра экрана вниз идет бокс. Возможно ли его всегда выравнивать по центру?

Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0

Вижу 2 решения проблемы:

1). Для нормальных браузеров пишем display:table; display:table-cell; и т.п., а для IE6 используем expression'ы для отсчитывания отступов сверху и снизу при изменении высоты блока.

2). Загнать блок в таблицу и не мучиться.

Еще можно поискать какой-нибудь скрипт, который бы выравнивал блок по центру окна.

Я бы загнал блок в таблицу и не мучился с IE...

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<style type="text/css">
* {
padding:0;
margin:0;
border:0;
}
HTML,BODY {
height:100%;
}
.center {
vertical-align:middle;
width:100%;
height:100%;
text-align:center;
}
.wrap {
width:34%;
background-color:#c3f6ff;
text-align:center;
margin:0 auto;
}
</style>

<title>Title</title>
</head>

<body>
<table class="center">
<tr>
<td>
<div class="wrap">
<p>Text text text</p>
<p>Text text text</p>
<p>Text text text</p>
<p>Text text text</p>
<p>Text text text</p>
</div>
</td>
</tr>
</table>
</body>
</html>

Link to comment
Share on other sites

  • 0

Попробуйте

<div id="bla" style="border: solid 1px #000; width: 200px; position: absolute;">
zxczxczxc
<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
</div>

<script>
var bbla = document.getElementById("bla");
bbla.style.left = "50%"
bbla.style.top = "50%"
var bblaleft = bbla.offsetLeft
bbla.style.left = bblaleft - bbla.offsetWidth/2
var bblatop = bbla.offsetTop
bbla.style.top = bblatop - bbla.offsetHeight/2
</script>

Edited by XAOPT
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