Asked by grasslime
at 2024-07-26 20:16:17
Point:500 Replies:4 POST_ID:829126USER_ID:12019
Topic:
Web Languages/Standards;Cascading Style Sheets (CSS);Scripting Languages
looking for a tooltip example that shows above the help link.
there are different ways to do it, one is using title attribute and another one using a tag value that's is below the link. pl advice.
1. <a href="#" title="this is description of the product">help</a>
2. <a href="#">help</a>
<div>
<h4>Help about product</h4>
<p>this is description of the product</p>
</div>
there are different ways to do it, one is using title attribute and another one using a tag value that's is below the link. pl advice.
1. <a href="#" title="this is description of the product">help</a>
2. <a href="#">help</a>
<div>
<h4>Help about product</h4>
<p>this is description of the product</p>
</div>