Jump to content
  • 0

Титульная страница по центру...


Guooff
 Share

Question

Здравствуйте, я больше дизайнер чем верстальщик, но от сейчас себе делаю что то вроде портфолио и столкнулся с проблемой отцентровки сайта , как бы я знаю, что бы сайт был вверху и по середине нужно в css прописать так:

 *{
margin-left: auto;
margin-right:auto;
}

не подскажите как сделать, что бы сам сайт или же вообще указанная часть контента была по середине, не смотря на разрешение экрана, в моём случае - это титульная страница с небольшим логотипчиком и кнопкой входа на сайт, вроде всю ночь сидел и искал как это сделать, так и не нашёл...

За благовременно спасибо!

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Ну если высота родителя и блока который надо отцентрировать фиксированные, то:

html, body {

height: 800px;

}

#bloks {

height: 100px;

margin: 350px auto;

}

ширину не стал писать, ибо это не проблема, проблема именно с вертикальным выравниванием.

Link to comment
Share on other sites

  • 0

Как-то так:

js.js

$(document).ready(function(){
//Get the window height and width
var H = $(window).height();
var W = $(window).width();
//Set the popup window to center
$('#my_div').css('top', H/2-$('#my_div').height()/2);
$('#my_div').css('left', W/2-$('#my_div').width()/2);
}); });

index.html

<head>
<script type="text/javascript" src="js/jquery-1.4.1.js"></script>
<script type="text/javascript" src="js/js.js"></script>
</head>
<body>
<div id="my_div">bla-bla-bla</div>

Ссылку на свежий скрипт jQuery возьмите в Википедии.

Можно и без jQuery на чистом js, но я плохо его знаю.

Минус в том, что при изменении размеров окна браузера блок не будет перемещаться (нужно эту ф-цию повесить и на онРесайз или куда-то туда, но на практике меняют размер окна оч. оч. редко.)

Edited by PoshtarBoba
Link to comment
Share on other sites

  • 0

МОжет это и не совсем то что нужно но всеже,

центрируется блок - но с задаными параметрами ширины и высоты (полезно для заглушек)

<!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" xml:lang="ru">

<head>

<title>Центрируем фон</title>

<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>

<style type="text/css">

* {

margin: 0;

padding:0;

}

html, body {

height:100%;

}

body {

width:100%;

height:100%;

display: table;

}

#container {

display: table-cell;

vertical-align: middle;

background-color: #fff;

}

#fone2{

display: table-cell;

vertical-align: middle;

background-color: #333;

position:absolute;

width:50%;

right:0;

top:0;

height:100%;

z-index:5;

}

div#center {

height:200px;

width:200px;

margin: 0 auto;

position: relative;

z-index:10;

margin-top: expression((

document.documentElement.offsetHeight/2)

-(parseInt(offsetHeight)/2) <0 ? "0" :

(document.documentElement.offsetHeight/2)

-(parseInt(offsetHeight)/2) +'px') ;

background-color:green;

}

</style>

</head>

<body>

<div id="fone2"></div>

<div id="container">

<div id="center">

Center Fone

</div>

</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