html - Header height to fit background image -


i have question related header height.

html:

<header>         <h1>             hello world!         </h1> </header> 

css:

header {     background-image: url("../images/header.png");     background-size: cover;     height: 100%;     text-align: center;     color: white; } 

in case header height fits text height. there way set header height same image height?

you header image foreground img tag rather background image , in css

header {     position: relative; }  header img {     width: 100%;     height: auto; }  header h1 {     position: absolute;     top: 0; } 

Comments

Popular posts from this blog

node.js - Using Node without global install -

How to access a php class file from PHPFox framework into javascript code written in simple HTML file? -

java - Null response to php query in android, even though php works properly -