HTML/CSS

-----------------------------------------------------------------------------------------------------
Page Refresh using Meta tag

<meta http-equiv="refresh" content="0 url =http://xyz.com />

Link On image tag without anchor tag

<img src="abc.gif" alt="" longdesc="http://xyz.com">

------------------------------------------------------------------------------------------------------
Perfect Full Page Background Image
<style>
body {
background:url(../images/body.jpg) no-repeat fixed center center / cover transparent;
}
</style>
http://css-tricks.com/perfect-full-page-background-image/
------------------------------------------------------------------------------------------------------


Hack CSS
___________


:root #divinputfile .filepc { margin-left:50px\0/IE9; } /* IE9 */

#divinputfile .filepc{*margin:-2px 0 0 -110px; } /* IE7 */

#divinputfile .filepc{margin-left/*\**/:-110px;} /* IE8 */

body:nth-of-type(1) #divinputfile .filepc{margin-left:80px;} /* googlr crome */

@-moz-document url-prefix() {
  #divinputfile .filepc {
     margin-left:-120px !important;
  }
} /* fire */

 

No comments:

Post a Comment