-2

The height of the blue bar in Safari and Chrome matches but in Firefox it is smaller. I would like to make them equal.

E_net4
  • 27,810
  • 13
  • 101
  • 139
cyonder
  • 852
  • 1
  • 15
  • 36

1 Answers1

2

You could use a css hack for firefox:

@-moz-document url-prefix() { 
  header {
     height:50px; /* or whatever fits best there */
  }
}

This should only be interpreted by Firefox, while Opera, Chrome and Safari will use the default header {...} definition

hexerei software
  • 3,100
  • 2
  • 15
  • 19