Last active
April 29, 2017 17:00
-
-
Save MarJaysonSanAgustin/81bfdca9fd251e3347da33f554b4c3db to your computer and use it in GitHub Desktop.
Bootstrap 3 image-covered panel heading
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Markup --> | |
<div class="container center-content"> | |
<div class="row"> | |
<div class="col-md-10 col-md-offset-1"> | |
<div class="panel panel-primary boxed panelzone"> | |
<div class="panel-header"> | |
<img src="./assets/imgs/gg1.png" class="img-responsive"> | |
</div> | |
<div class="panel-body"> | |
<h1> Some Content in here </h1> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Styling --> | |
<style> | |
.center-content { | |
position: relative; | |
top: -300px; | |
} | |
.boxed { | |
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); | |
} | |
.panelzone > .panel-header { | |
padding: 0px; | |
} | |
.panelzone > .panel-header > img { | |
width: 100%; | |
height: 100%; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment