简单教程
提交运行
代码编辑器:
<!DOCTYPE html> <meta charset="utf-8"> <link href="/static/next/css/tryit.css?v=2017082407" rel="stylesheet"/> <style> .divVerdana {font-family: verdana;} .divTimes {font-family: 'times new roman';} #div1 {font-size-adjust:0.58;} #div2 {font-size-adjust:0.58;} </style> <p><b>Note:</b> Only Firefox supports the font-size-adjust property.</p> <p>Two divs using the same font-size-adjust property:</p> <div id="div1" class="divVerdana"> You control the font size better with the font-size-adjust property. </div> <div id="div2" class="divTimes"> You control the font size better with the font-size-adjust property. </div> <p>The same two divs without the font-size-adjust property:</p> <div class="divVerdana"> You control the font size better with the font-size-adjust property. </div> <div class="divTimes"> You control the font size better with the font-size-adjust property. </div> <footer>简单教程,简单编程<br/>Copyright © 简单教程 www.twle.cn</footer>
运行结果: