Skip to content

Instantly share code, notes, and snippets.

@ktzanev
Created March 12, 2017 11:11
Show Gist options
  • Save ktzanev/552a346c2ea3426484f87ba3707e874e to your computer and use it in GitHub Desktop.
Save ktzanev/552a346c2ea3426484f87ba3707e874e to your computer and use it in GitHub Desktop.
#id : sélecteur d'ID (GistRun)
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>#id : sélecteur d'ID</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<ul>
<li>un</li>
<li id="bingo">deux</li>
<li>trois</li>
</ul>
</body>
</html>
li {
font-size:3em;
}
#bingo {
text-shadow: 1px 2px 7px purple;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment