I am looking to create a website layout similar to Facebook, with the following features:
- A fixed or sticky header and no footer
- 3 div elements, where
div1:div2:div3 = 1:2:1
- 3 scroll bars to control each div... Scroll-1 and scroll-3 will be inside div-1 and div-3 respectively to control their content. Scroll-bar-2 will be on the right side of the main body to control the content of div-2.
- A fully fixed page without any extra scroll bars, testing by adding lorem1000 in each div
I would appreciate your assistance in creating this layout. Thank you in advance.
Here is the HTML code that I have written:
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css">
<title>test</title>
</head>
<body>
<nav>
<h1>This is nav</h1>
</nav>
<div class="row">
<div class="col-3">lorem1000</div>
<div class="col-5">lorem1000</div>
<div class="col-3">lorem1000</div>
</div>
</body>
</html>
I would really appreciate your help in achieving this layout goal. Thank you in advance. https://i.sstatic.net/Ufvrd.png