html - I need to align an image, text on a header -
i'm trying align both image , text on center of header, 1 displayed left, other displayed right. although can't text centered.
header{ height: 7em; background-color: gray; } header h1{ vertical-align: middle; float: right; } header img{ height: 7em; width: 12em; vertical-align: middle; float: left; } <header> <link rel="stylesheet" type="text/css" href="css/style.css"/> <img src="img/filmes.png" alt="logo"/> <h1>sua locadora virtual!</h1> </header>
you can use line-height:
header{ height: 7em; background-color: gray; } header h1{ vertical-align: middle; float: right; line-height: 2em; } header img{ height: 7em; width: 12em; vertical-align: middle; float: left; } <header> <link rel="stylesheet" type="text/css" href="css/style.css"/> <img src="img/filmes.png" alt="logo"/> <h1>sua locadora virtual!</h1> </header>
Comments
Post a Comment