JSFiddle - React, Tailwind, and code Playground

Restaurant Menu con Header y Footer Normales.

by Yolanda Robles

HTML

<div id="header">
    
</div>
<div id="content">
    <div class="container">
        <div class="titulo">holaaa</div>
        <br />This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>This is Content
        <br/>
    </div>
    <div id="footer"></div>

CSS

html {
    height: 100%;
}
.container {
    margin:5%;
    padding: 50px;
    z-index: 1;
    border-radius: 20px;
    box-shadow: inset 0 0 0 2px #F5D0A9;
    -moz-box-shadow: inset 0 0 0 2px #F5D0A9;
    -webkit-box-shadow: inset 0 0 0 2px #F5D0A9;
    /* Background */
    background-image:url(http://www.freecreatives.com/wp-content/uploads/2015/03/vintage-backgrounds-17559-18119-hd-wallpapers.jpg);
}
#header {
    top: 0;
    height: 20px;
    width: 100%;
    background-color: #fff;
}
#footer {
    bottom: 0;
    height: 20px;
    width: 100%;
    background-color: #fff;
}
#content {
    position: absolute;
    width: 100%;
    background-color:#fff;
    overflow: auto;
}