My question is really boring so i am bored with it. i am C# developer. Also my CSS and html are poor. i designed a login page by using login page
why I can not see images left, right, center?
<td width="198" bgcolor="" style="background-image:url(../../Styles/img/loginimages/login-left.jpg);background-repeat: no-repeat;background-position: bottom center"></td>
You can’t use relative url paths with inline style declarations. Declare the whole url or start it with just
/to indicate it is under your domain root.Try
If this were in a CSS file then you could use relative paths, but they would be in relation to the css file.