css3使用服務器端字體:css
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>使用服務器端字體</title> <style> @font-face { font-family: webFont; /*此代碼會首先用客戶端字體Arial,若是客戶端沒有用下面一種服務器端字體*/ /*format格式: (ttf):truetype;(otf):opentype*/ src:local("Arial"), url("../../font/ACaslonPro-Bold.otf")format("opentype"); } p{ font-family: webFont; } </style> </head> <body> <p>This is a test p</p> </body> </html>
css3修改字體種類而保持字體尺寸不變:html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>CSS3 修改字體種類而保持字體尺寸不變</title> <style> /*x-height:58px; font-size:100px; aspect:0.58; font-size-adjust: 0.56;*/ #p1{ font-family:"Arial Black"; font-size: 16px; font-size-adjust: 0.76; } #p2{ font-family:"Arial"; font-size: 16px; font-size-adjust: 0.56; } #p3{ font-family:"Bodoni MT"; font-size: 16px; font-size-adjust: 0.46; } </style> </head> <body> <p id="p1">this isa test p1</p> <p id="p2">this isa test p2</p> <p id="p3">this isa test p3</p> </body> </html>