| 12345678910111213141516171819202122 |
- <p>
- <b>Font-size converters mode</b>:
- <input type="radio" id="mode-restricted-values" name="mode" value="restricted-values"><label for="mode-restricted-values">Restricted value matching</label>
- <input type="radio" id="mode-disable-value-matching" name="mode" value="disable-value" checked><label for="mode-disable-value-matching">Disabled value matching</label>
- </p>
- <div id="editor">
- <h2>Font Size feature sample.</h2>
- <p><span style="font-size: 10px;">Some text with font-size set to: 10px.</span></p>
- <p><span style="font-size: 12px;">Some text with font-size set to: 12px.</span></p>
- <p><span style="font-size: 14px;">Some text with font-size set to: 14px.</span></p>
- <p>Some text with the default size</p>
- <p><span style="font-size: 18px;">Some text with font-size set to: 18px.</span></p>
- <p><span style="font-size: 20px;">Some text with font-size set to: 20px.</span></p>
- <p><span style="font-size: 22px;">Some text with font-size set to: 22px.</span></p>
- <p><span style="font-size: 36px;">Some text with font-size set to: 36px.</span></p>
- <p><span style="font-size: 48px;">Some text with font-size set to: 48px.</span></p>
- <p><span style="font-size: 64px;">Some text with font-size set to: 64px.</span></p>
- <p><span style="font-size: 2em">Some text with font-size set to: 2em.</span></p>
- <p><span style="font-size: 15.5pt">Some text with font-size set to: 15.5pt.</span></p>
- </div>
|