On Thu, May 1, 2014 at 4:45 PM, Ted Kim (Axelerate LLC) <
[email protected]> wrote:

>  Hello webmasters @ php.net,
>
> I am a Program Manager with the Ecosystem Engineering and Frameworks team
> at Microsoft and work with 3rd party web sites regarding the latest in
> Internet Explorer 11 compatibility. I was referred to this address by
> Pierre Joye, and I hope you can help me solve an issue or that you could
> point me to the correct contact.
>
> Based upon IE testing it appears that specific pages, subdomains and
> subpages on php.net are designed to be responsive but currently do not
> utilize the @-ms-viewport rule to disable Internet Explorer’s auto scaling
> logic.  It is recommended that the @-ms-viewport rule is added to only the
> responsive pages for optimal viewing of your site.  The rule should not be
> added to non-responsive pages.
>
> CSS:
>
>
>
>
>
> @-ms-viewport {
>
>
>
> width: device-width;
>
>
>
> }
>
>
>
> This will allow a better screen resolution experience for devices
> currently available and others that might be coming on the market.
>
>
>
> For more information please see:
>
> ·         W3C spec for the @viewport rule: 
> *http://www.w3.org/TR/css-device-adapt/
> <http://www.w3.org/TR/css-device-adapt/>*
>
>  ·         MSDN blog post: 
> *http://blogs.msdn.com/b/ie/archive/2012/06/19/adapting-your-site-to-different-window-sizes.aspx
> <http://blogs.msdn.com/b/ie/archive/2012/06/19/adapting-your-site-to-different-window-sizes.aspx>*
>
>
>

Is this basically equivalent to this meta tag?  <meta name="viewport"
content="width=device-width, initial-scale=1.0">

Reply via email to