html - How to make header like that in css? -


my site code usual

<div class="header"></div> <div class="site-inner"></div> <div class="footer"></div> 

how can make header background on image? whole site content have position absolute , margin-top:-500px ?

is case it?

header

i assume mean overlap.

negative margin 1 way.

.header {    height: 50px;    background: lightblue;  }  .site-inner {    width: 80%;    margin: auto;    height: 50px;    background: lightgrey;    margin-top: -30px;    box-shadow: 0 -2px 2px black;  }
<div class="header"></div>  <div class="site-inner"></div>


Comments

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

Rendering JButton to get the JCheckBox behavior in a JTable by using images does not update my table -