运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <head> <style> .verdana { font-family: Verdana, sans-serif; font-size: 15px; } .times { font-family: Times, serif; font-size: 15px; } .adjust { font-size-adjust: 0.545; } </style> </head> <body> <h1>The font-size-adjust Property</h1> <p class="verdana">This text uses the Verdana font (15px), which has relatively large lowercase letters, and is easy to read.</p> <p class="times">This text uses the Times font (also in 15px), which is hard to read in small sizes.</p> <p class="times adjust">This text in 15px Times font is adjusted to the same aspect value as the Verdana font, so lowercase letters are normalized across the two fonts. </p> </body> </html>