For example, I have a flex container with two items in it, when I am trying to search the text inside both flex item using find no result is given.
div {
display: inline-flex;
align-content: flex-start;
}
<div>
<p>Hello</p>
<p>World!</p>
</div>
Is there any way where I can use flex and search the whole content of the div together like CTRL+F HelloWorld!