[Solved] CSS height is different in different browser


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

0

solved CSS height is different in different browser