Fixed Style Property Hint for fixed width

xf_phantom

Well-known member
Shouldn't the phrase be changed now?

Code:
The width of the page is controlled with this property. Use this to switch between liquid and fixed layouts.

Liquid example: width: auto; margin: 0 20px;
Fixed example: width: 960px; margin: auto;

If we use the example, we'll lose the responsive design feature.

This should be replaced with
Code:
The width of the page is controlled with this property. Use this to switch between liquid and fixed layouts.

Liquid example: width: auto; margin: 0 20px;
Fixed example: max-width: 960px; margin: auto;
 
Top Bottom