JSFiddle - React, Tailwind, and code Playground
Bootstrap: Entrevista, Carrusel responsivo
by Yolanda Robles
HTML
<link rel="stylesheet" href="https://getbootstrap.com/dist/css/bootstrap.css">
<script src="https://getbootstrap.com/dist/js/bootstrap.js"></script>
<div id="header">
</div>
<div id="content">
content<br/>content<br/>content<br/>content<br/>content<br/>content<br/>content<br/>content<br/>content<br/>content<br/>content<br/>content<br/>content<br/>content<br/>content<br/>content<br/>content<br/>content<br/>content<br/>content<br/>content<br/>content<br/>content<br/>content<br/>content<br/>content<br/>content<br/>content<br/>content<br/>content<br/>
</div>
<div id="footer">
</div>
CSS
#header {
position: fixed;
top: 0;
height: 20px;
width: 100%;
background-color: #ff0000;
}
#footer {
position: fixed;
bottom: 0;
height: 20px;
width: 100%;
background-color: #ff0000;
}
#content {
position: absolute;
top: 20px;
bottom: 20px;
width: 100%;
background-color:#0000ff;
overflow: auto;
}