Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
Качай и учись по этой книге "Мастерская CSS". Там все очень доступно и есть примеры многих приемов и даже разжевана верстка двух сайтов. Сам по ней учился. ИМХО это лучшая книга по верстке на дивах.Люди, помогите...
Знаю html, css, умею верстать таблицами, где можно почитать про дивовую верстку?
<div class="wrapper">
</div>
<div class="wrapper">
<div class="header"></div>
</div>
.wrapper{
height:100%;
width:100%;
max-width:1500px;
min-width:1000px;
}
.header{
width:100%;
height:100px;
}
<div class="wrapper">
<div class="header"></div>
<div class="menu"></div>
<div class="column"></div>
</div>
.wrapper{
height:100%;
width:100%;
max-width:1500px;
min-width:1000px;
}
.header{
width:100%;
height:100px;
}
.menu{
width:200px;
float:left;
}
.column{
margin-left:200px;
}
<div class="wrapper">
<div class="header"></div>
<div class="menu"></div>
<div class="column"></div>
<div class="footer"></div>
</div>
.wrapper{
height:100%;
width:100%;
max-width:1500px;
min-width:1000px;
}
.header{
width:100%;
height:100px;
}
.menu{
width:200px;
float:left;
}
.column{
margin-left:200px;
}
.footer{
width:100%;
height:30px;
}