Created
July 28, 2022 21:37
-
-
Save Maxondria/827bc07b38b475b81f1fd76640ce8363 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Document</title> | |
</head> | |
<style> | |
.required::before { | |
content: "* "; | |
color: red; | |
} | |
[data-tooltip] { | |
position: relative; | |
transition: all 1s ease-in-out; | |
} | |
[data-tooltip]:hover::after { | |
content: attr(data-tooltip); | |
position: absolute; | |
top: 100%; | |
left: 0; | |
right: 0; | |
margin: 5px; | |
padding: 5px; | |
background: black; | |
color: white; | |
border-radius: 5px; | |
z-index: 10; | |
} | |
</style> | |
<body> | |
<label class="required">Name</label> | |
<input type="text" required /> | |
<button data-tooltip="Short tooltip!">Submit Form</button> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment