Hi all,
does anyone know why Firefox only seems to display the webdings font when using face in the font tag and not when styled ?
I'm trying to swap all font tags for span tags
Thanks.
does anyone know why Firefox only seems to display the webdings font when using face in the font tag and not when styled ?
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"[URL unfurl="true"]http://www.w3.org/TR/html4/loose.dtd">[/URL]
<html lang="en">
<head>
<title>
test
</title>
<style type="text/css">
.mp3btn{
color:#fff;
font-family:webdings;
font-size:15px;
background:#000;
border:2px red groove;
cursor:pointer;
}
</style>
</head>
<body>
<span onclick="" id="btnNext" class="mp3btn">7</span>
<span onclick="" id="btnPlayStop" class="mp3btn" style="color: red;"><</span>
<span onclick="" id="btnNext" class="mp3btn">8</span>
</body>
</html>
I'm trying to swap all font tags for span tags
Thanks.