i have try to print barcode 39 on firefox, on display browser it the barcode was appear, but when i want to print this, the barcode was gone. then i try on google chrome, everything was okay.
this is my code :
@font-face {
font-family:"Barcode 39";
src:url("/web/res/css/font/Code39.eot?") format("eot"),url("/web/res/css/font/Code39.woff")
format("woff"),url("/web/res/css/font/Code39.ttf")
format("truetype"),url("/web/res/css/font/Code39.svg#")
format("svg");
font-weight:normal;font-style:normal;}
at html :
<style media="screen" type="text/css">/*<![CDATA[*/@import '/web/task/local/adhi/fontbarcode.css';/*]]>*/</style>
<style type="text/css">
.code39{
font-family:"Barcode 39";
font-size :50px;
}
</style>
<span class="code39">*1234*</span>
<br><br>
-Thanks