Click to See Complete Forum and Search --> : Problems with some fonts.


Walle
02-23-2010, 07:57 AM
I tried some fonts used in asian and it seems work same on IE and FF, but on FF there is big space between first and second word for "lang 2". Anyone know why and how to fix this? Image of how it looks in IE and FF http://img94.imageshack.us/img94/386/fontz.gif


CSS testfile:
body {
font-family: Verdana, Helvetica, Arial, sans-serif;
font-size: 12px;
font-weight: normal;
}


HTML testfile:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<link href="font.css" rel="stylesheet" type="text/css" />
</head>

<body>
Lang1<br/>test<br/>test<br/><br/>
Lang2<br/>परीक्षण<br/>परीक्षण<br/><br/>
Lang3<br/>測試<br/>測試<br/><br/>
Lang4<br/>試験<br/>試験<br/><br/>
Lang5<br/>시험<br/>시험
</body>
</html>