Advertisement
Guest User

Thomas

a guest
Nov 22nd, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.43 KB | None | 0 0
  1. body {
  2.     font-family: 'Courier New', Courier, monospace;
  3.     color: green;
  4. }
  5.  
  6.  
  7. img {
  8.     width: 300px;
  9.     height: 300px;
  10.     border-radius:30px;
  11. }
  12.  
  13.  
  14.  
  15. .survol:hover {
  16.     opacity : 0.8;
  17.     background-color: orange;
  18.     cursor: pointer;
  19. }      
  20.  
  21. /* img[src="http://images.innoveduc.fr/integration_parcours/css/css_selectors_props/hobbit-house-grass.jpg"] { */
  22.  
  23. img:nth-of-type(2) {
  24.     filter: grayscale(100%);
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement