Search code examples
htmltwitter-bootstrapcssmaterialize

Panel or group box in MaterializeCSS?


Is there something like Bootstrap panels in MaterializeCSS?

Bootstrap panels here: http://www.w3schools.com/bootstrap/bootstrap_panels.asp


Solution

  • The closest thing to a Bootstrap panel would be called card-panel in Materialize CSS.

    Example:

    <script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.2/js/materialize.min.js"></script>
    <link href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.2/css/materialize.min.css" rel="stylesheet"/>
        
    <!--Card Panel-->
    <div class="card-panel">
        <span class="black-text">A Basic Panel</span>
    </div>

    Cheers