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 -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -