Menu:

Links:

Use these links to navigate the FAQ:

Next:
Using PPT2HTML with NetLearning

Previous:
Where can I learn more about PowerPoint and HTML accessibility?

All about PPT2HTML index page

Updated
7/25/2016

Microsoft MVP Logo

An accessibility feature that may prove troublesome

Some browsers may automatically put a colored highlight around form elements and hyperlinks that have "focus".

This can make it easier for people with limited mobility to navigate the web page, but it may also prove distracting for other users.

Personally, I like being able to tab-key around a web page and press Enter to activate links; these highlighted links make it easier to do this. But if you don't want the highlights, here's a possible approach to disabling them.

Use a bit of CSS in your HTML template

<head>,
<style>
*:focus {outline: none;}
</style>

[Previous] [Home] [Next]