Created
October 1, 2017 11:17
-
-
Save techxdeveloper/aaf0571384fdb797976e1e724568fbb7 to your computer and use it in GitHub Desktop.
CSS Psuedo Class Selector (:active and :hover)
This file contains 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"> | |
<title>CSS Psuedo Class Selector (:active and :hover)</title> | |
<style> | |
h1 { | |
color: #00bdc4; | |
border-bottom: 1px solid #bdbdbd; | |
padding-bottom: 20px; | |
} | |
p { | |
display: none; | |
padding: 20px; | |
background-color: #f5f5f5; | |
color: #757575; | |
} | |
div { | |
cursor: pointer; | |
} | |
div:hover p { | |
display: block; | |
} | |
</style> | |
</head> | |
<body> | |
<div> | |
<h1>CSS Psuedo Class Selector (:active and :hover)</h1> | |
<div> Hover Me!!! | |
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Alias quaerat, ad laborum atque quasi adipisci, ducimus quo hic ratione autem odit totam ipsum odio, praesentium cum voluptate repudiandae quia nihil.</p> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment