How to browse between pages without screen flickering?

css, html

Solution

Just change your body background to:

body {
  background: url("Images/sky01.jpg") repeat scroll 0 0 #121210;
  font-family: Verdana,Geneva,sans-serif;
  font-size: 12px;
  margin: 0;
  padding: 0;
}

background color will prevent white flickering while loading the background image.

Problem

I have two classic HTML pages (just HTML and CSS) and links between them. When I click on these links, the screen flickers (it quickly goes white between transitions). I tried to place this in the head - without result: ``` <meta http-equiv="Page-Enter" content="blendTrans(Duration=0.0)" /> <meta http-equiv="Page-Exit" content="blendTrans(Duration=0.0)" /> ``` I can usually open other sites without the flickering. Browser is Firefox 16.0.1.

Original source

Related problems