Problema con @font-face en Firefox, ayuda necesaria.

  • Autor Autor thejigg0695
  • Fecha de inicio Fecha de inicio
T

thejigg0695

Dseda
Redactor
Bueno lo que pasa es que me funciona bien el font face en google chrome, safari, opera menos en firefox y quisiera que alguien me pueda ayudar para solucionar este problema .

Bueno aqui el codigo que tengo.
Insertar CODE, HTML o PHP:
@font-face {
	font-family: 'LeagueGothicRegular';
	src: url('font/league_gothic.eot');                               
	src: url('font/league_gothic.eot?iefix') format('eot'),          
		url('font/league_gothic.woff') format('woff'),                
		url('font/league_gothic.ttf')  format('truetype'),            
		url('font/league_gothic.svg#webfontbDMP4rcs') format('svg');  
	font-weight: normal;
	font-style: normal;
	}
 
Prueba de la siguiente manera:

Insertar CODE, HTML o PHP:
<style type="text/css">
@font-face {
 font-family: LeagueGothicRegular;
 src: url("font/league_gothic.eot") /* EOT file for IE */
}
@font-face {
 font-family: LeagueGothicRegular;
 src: url("font/league_gothic.ttf") /* TTF file for CSS3 browsers */
}
</style>
 
Prueba de la siguiente manera:

Insertar CODE, HTML o PHP:
<style type="text/css">
@font-face {
 font-family: LeagueGothicRegular;
 src: url("font/league_gothic.eot") /* EOT file for IE */
}
@font-face {
 font-family: LeagueGothicRegular;
 src: url("font/league_gothic.ttf") /* TTF file for CSS3 browsers */
}
</style>


Pero ya esta compañero
@font-face {
font-family: 'LeagueGothicRegular';
src: url('font/league_gothic.eot');
src: url('font/league_gothic.eot?iefix') format('eot'),
url('font/league_gothic.woff') format('woff'),
url('font/league_gothic.ttf') format('truetype'),
url('font/league_gothic.svg#webfontbDMP4rcs') format('svg');
font-weight: normal;
font-style: normal;
}
 
si coloco tu código no me funciona tampoco, si pongo el que te coloqué si me funciona
 
Atrás
Arriba