top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is graceful degradation in web design?

0 votes
282 views
What is graceful degradation in web design?
posted Jun 22, 2017 by Avijit Maity

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Graceful degradation is one solution for practice of building a web site or application, so it provides a good level of user experience in modern browsers. However, it will degrade gracefully for those using older browsers. The system may not be as pleasant or as pretty, but the basic functionality will work on older systems.

A simple example is the use of 24-bit alpha-transparent PNGs. Those images can be displayed on modern browsers without problems. IE5.5 and IE6 would show the image, but transparency effects would fail (it can be made to work if necessary). Older browsers that do not support PNG would show alt text or an empty space.

Developers adopting graceful degradation often specify their browser support level, e.g. level 1 browsers (best experience) and level 2 browsers (degraded experience).

answer Jun 23, 2017 by Sumanta Hazra
Similar Questions
0 votes

Which of the following function in PHP returns the number of characters in a string variable ?

...