How to Create Border using CSS
In this article, you will learn How to Create Border using CSS. Example:- index.php
…<html>
<head>
<title>How to Create Border using CSS</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<h2>Types of border</h2>
<p class="dotted">dotted border.</p>
<p class="dashed">dashed border.</p>
<p class="solid">solid
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;