list-1.html (517B)
1 <!DOCTYPE HTML> 2 <head> 3 <style> 4 div { background: yellow; line-height: 1.0; border: 1px solid red; font-size: 12px; width: 480px; } 5 ol { width: 480px;} 6 </style> 7 </head> 8 <!-- 9 In a 480px container, the minimum font size at 15em per line is 32px. 10 This means we map 0px-48px into 32px-48px, so 12px gets mapped to 36px. 11 --> 12 <body> 13 <div> 14 <ol> 15 <li>Separate interface design from internals</li> 16 <li>Enable multiple user-interface strategies</li> 17 <li>Enable multiple-platform support</li> 18 </ol> 19 </div> 20 </body>