I have done a css based tooltip and it's working great inn desktop. But when I test in ipad then it breaks.
In ipad, instead of hover it works on click which is fine and I can see the div is poped up.
But the question is how can I can close/remove/hide the box(without having a closing button as the main idea is to get the box on hover). I had a thought that if I touch somewhere in the screen then the box will be removed. But it doesn't work that way.
HTML code:
<div class="options">
<label class="control control--checkbox info">Directional
<input type="checkbox">
<div class="control__indicator"></div>
<div class="tooltip-container">
<h4>Directional</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus lacus libero, accumsan sed magna vitae, suscipit tincidunt tellus. Maecenas ut purus interdum,
</p>
</div>
<span class="infocon"></span>
</label>
</div>
Here is a demo: https://jsfiddle.net/denc2hxt/
Any help is highly appreciated.