My firefox does not rendered correctly my magina

-2

I always use the crome to do my tests on the pages I'm developing there in the crome, everything is ok ... But when I render the same page in firefox, the letters are slightly flattened and the measurements and spacing of the elements are different. ............. For example, in the crome, a button is one size and behaves correctly, but in firefox the same button gets smaller or larger and still behaves different ... The technologies I use are just HTML5, CSS3 and Flexbox basically ...

    
asked by anonymous 19.10.2018 / 03:32

1 answer

0

Something that might help is a CSS reset

html, body, span, p, form, img, a, ul, ol, li, table, tr, td, div{
margin: 0;
padding: 0; 
border:none; 
outline:none;
list-style-type:none;
}

Note: This is a partial workaround, as it is necessary to check if each css styling works on each browser. It is also necessary to check if the file formats are supported by the browser.

    
19.10.2018 / 11:12