Hi I have a problem linking my @ font-face in firefox when I use "../" in the url of the font to go to the previous directory.
I have the following example code, if I remove the "../" and paste the "sources" folder that keeps all my fonts inside the directory where the html works correctly but if I leave out the sources in another route that implies backward in the Firefox directory does not take them.
It is worth mentioning that the other browsers do (chrome opera and even Explorer)
I thank whoever can help me and I have looked in many places and nowhere have I found a solution
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
@font-face {
font-family: rock;
src: local(rock), url('../fuentes/Rock_Salt (1)/RockSalt-Regular.woff');
}
p.custom_font{
font-family: rock;
font-size:52px;
}
</style>
</head>
<body>
<p class="custom_font">Hola Hola</p>
<a href="../views 2/prueba2.html">volver</a>
</body>
</html>