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
Post a Comment