JSFiddle - React, Tailwind, and code Playground

HTML

<div><p>Foo</p><p>Bar</p></div><p>Baz</p>

CSS

div {
    position: absolute;
}
div > * {
    display: none;
}
div > p:nth-child(2){
    display: inherit;
}