In Bootstrap 4, I want to create a row that fills up the remaining height of the page without extending past its designated space. The content should be scrollable using buttons, preferably with no visible scrollbar.
I have attempted to break down my layout like this. Please feel free to correct me as this is not my area of expertise.
HTML:
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" type="text/css" href="/library/bootstrap-4.1.0/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="/library/fontawesome-5.0.10/css/fontawesome-all.min.css">
<link rel="stylesheet" type="text/css" href="/css/screen/presentation.css"/>
<title>Test</title>
</head>
<body>
<!-- Your HTML code goes here -->
</body>
</html>
CSS:
/* Your CSS code goes here */
JS:
// Your JavaScript code goes here
Thank you for your assistance!