I want to know information about web designs.So,Can you tell me the difference between responsive web design and adaptive web designs?
-
1possible duplicate of [Responsive design vs adaptive design](http://stackoverflow.com/questions/14831530/responsive-design-vs-adaptive-design) – Limon Monte Jun 11 '15 at 07:57
1 Answers
Both responsive and adaptive design attempt to optimize the user experience across different devices, adjusting for different viewport sizes, resolutions, usage contexts, control mechanisms, and so on.
Responsive design works on the principle of flexibility. The idea is that a single fluid design based upon media queries, flexible grids, and responsive images can be used to create a user experience that flexes and changes based on a multitude of factors. The primary benefit is that each user experiences a consistent design. One drawback is a slower load time.
Adaptive design is more like the modern definition of progressive enhancement. Instead of one flexible design, adaptive design detects the device and other features, and then provides the appropriate feature and layout based on a predefined set of viewport sizes and other characteristics. This can result in a lack of consistency across platforms and devices, but the load time tends to be faster.