Skip to content

Instantly share code, notes, and snippets.

@ktzanev
Last active March 12, 2017 11:39
Show Gist options
  • Save ktzanev/9ff35ff69a0280c50925188431318a1f to your computer and use it in GitHub Desktop.
Save ktzanev/9ff35ff69a0280c50925188431318a1f to your computer and use it in GitHub Desktop.
E + F : sélecteur d'adjacence (GistRun)
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>E + F : sélecteur d'adjacence</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<h1>Images</h1>
<img src="http://fr.ubergizmo.com/wp-content/uploads/2014/08/gifs-rayons-x.gif" />
<img src="http://fr.ubergizmo.com/wp-content/uploads/2014/08/gifs-rayons-x-2.gif"/>
<img src="http://fr.ubergizmo.com/wp-content/uploads/2014/08/gifs-rayons-x-1.gif"/>
</body>
</html>
img {
width:100px;
border-radius: 50px;
}
h1 + img {
box-shadow: 0 0 21px red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment