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.
Актуальные контакты:
Telegram: @Nikker_web
E-Mail: tarasevich.email@gmail.com
Портфолио https://www.behance.net/d4d4186e
Разрабатываю дизайн групп в соц сетях, сайтов, приложений, другой дизайн под заказ
Актуальные контакты:
Telegram: @Nikker_web
E-Mail: tarasevich.email@gmail.com
Разрабатываю дизайн групп в соц сетях, сайтов, приложений, другой дизайн под заказ
Портфолио https://www.behance.net/d4d4186e
Question
forest69
Добрый вечер всем.
Нужно было сверстать вот так:
Так, чтобы 1 див был на все окно браузера.
У меня получилось сделать для хрома с разрешением 1440х990
В других браузерах и при других разрешениях получается все криво.
Может кто-нибудь помочь сверстать кроссбраузерно?
Даже хотябы не на весь экран, главное чтобы было крест накрест.
Вот мой код странички:
А вот CSS:
html{
background-color:#424242;
}
body{
left:0;
position:fixed;
top:0;
bottom:0;
width:300%;
height:300%
}
.hor{
/* Each step takes a third of the width */
float:left;
height:33.333%;
width:33.3333%;
overflow:hidden;
position:relative;
}
.vert{
/* Each step takes a third of the width */
float:none;
height:33.333%;
width:33.3333%;
overflow:hidden;
position:relative;
}
/* left */
#left{
background: no-repeat center center #6f7c18;
margin-left:-33.333%
}
/* top */
#top{
background: no-repeat center center #09C;
margin-top:-18.12%;
}
/* mid */
#mid{ background: no-repeat center center #175765;}
/* bot */
#bot{
background: no-repeat center center #3C9;
margin-top:18.12%
}
/* right */
#right{background: no-repeat center center #6a4214;}
/* Each step contains a section, centered in the page */
.section{
height:550px;
left:50%;
margin:-275px 0 0 -328px;
position:absolute;
top:50%;
width:655px;
}
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
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.