Skip to content

Instantly share code, notes, and snippets.

@ktzanev
Last active March 13, 2017 12:48
Show Gist options
  • Save ktzanev/ddd8ae269b74308e8a3b658bd96167c6 to your computer and use it in GitHub Desktop.
Save ktzanev/ddd8ae269b74308e8a3b658bd96167c6 to your computer and use it in GitHub Desktop.
* : sélecteur universel (GistRun)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>* : sélecteur universel</title>
<style type="text/css">
* {
border: 1px solid red;
padding: 7px;
margin: 7px;
}
</style>
</head>
<body>
Body
<div> Un
<div>Un - deux</div>
<div>Un - trois</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment