JSFiddle - React, Tailwind, and code Playground

by jamessouth

HTML

<div class="ms-test">
    <p>On a Nokia Lumia 925 in portrait mode running Windoes Phone 8.0 (OS version 8.0.10517.150) according to <a href="http://blogs.windows.com/windows_phone/b/wpdev/archive/2013/10/14/introducing-windows-phone-preview-for-developers.aspx" target="_blank">this</a> document I should be green.</p>
</div>

CSS

@-ms-viewport {
         width: device-width;
     }
     .ms-test {
         padding:16px;
         color:#fff;
         font-size:16px;
         background-color: #5cb85c;
     }
     @media (min-width: 767px) {
         .ms-test {
             background-color: #d9534f;
         }
     }