JSFiddle - React, Tailwind, and code Playground

HTML

<html>
    <head>
    </head>
    <body>
        <p>Hello!</p>
        <p>Woooa!</p>
    </body>
</html>

CSS

@media all and (max-width:500px){
    p:nth-of-type(2){
        display:none;
    }
}