css - Placing image at the top left of the screen in html -


please refer image below, wish add image extreme left , top of screen such word process appears right of it.

<div class="row"> <!--img src="c:/d drive data/databit/ymlsite/images/generic/logo.png",  height = 50 width = 50/--> </div> 

enter image description here

you can add image extreme left , top of screen using css.

<div class="row">     <img src="c:/d drive data/databit/ymlsite/images/generic/logo.png",       height = 50 width = 50/> </div> 

css:

img {     width: 400px;     height: 400px;     position: absolute;     left:0;     top:0; } 

by using can align image @ left , top of screen. can refer code. https://jsfiddle.net/4p0blurz/


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

What is happening when Matlab is starting a "parallel pool"? -

php - Cannot override Laravel Spark authentication with own implementation -