Hi. I don't know too much html, but I want to setup the following layout to my page:
To split the page in two, I wrote:
and
how can I setup Layout 3 to be scrollable, but not Layout 2?
To split the page in two, I wrote:
HTML:
<style>
body {
font-family: Arial;
/* color: #111111;
background-color:#f0fae4;*/
color: #f9f9ff;
background-color:#161B1F;
}
.split {
height: 100%;
width: 50%;
position: fixed;
z-index: 1;
top: 0;
overflow-x: hidden;
}
.left {
left: 0;
/* background-color: RGB(240, 250, 228);*/
}
.right {
right: 0;
/* background-color: RGB(240, 250, 228);*/
}
and
HTML:
<body>
<div class="split left">
.. content layout 1
</div>
<div class="split right">
<div class="so">
some content layout 2
</div>
<div class="layout3">
.... long content ...
</div>
</body>
how can I setup Layout 3 to be scrollable, but not Layout 2?