HTML CSS examples for CSS Widget:Header
HTML Header With Image And Text and Align Text To Bottom
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> .header {<!--from w w w . j a v a 2s . c o m--> border:2px solid red; } .header .image { background: url("https://www.java2s.com/style/demo/Safari.png") no-repeat; width: 65px; height: 65px; border:2px solid green; } .header .text { font: x-large sans-serif; border:2px solid blue; } .header .image, .header .text { display: inline-block; vertical-align: bottom; } </style> </head> <body> <div class="header"> <div class="image"></div> <div class="text"> Header Text </div> </div> </body> </html>