How to Create Tooltip using CSS
In this article, you will learn How to Create Tooltip using CSS. Example:-
…<html>
<head>
<title>Tooltip using CSS</title>
<style>
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: black;