Created
October 1, 2017 08:42
-
-
Save techxdeveloper/419fb04476359c87fe3d3517f6e45b85 to your computer and use it in GitHub Desktop.
CSS ID Selector
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 ID Selector</title> | |
<style> | |
#container { | |
padding: 20px; | |
margin: 20px; | |
border: 1px solid #00bdc4; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="container"> | |
<h1>CSS ID Selector</h1> | |
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dignissimos quos quaerat sunt eius numquam repellendus itaque labore voluptatum impedit, ipsum cumque eum iure necessitatibus distinctio est incidunt? Nam possimus, mollitia.</p> | |
<ul> | |
<li>Something</li> | |
<li>Something</li> | |
<li>Something</li> | |
<li>Something</li> | |
</ul> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment