Advertisement
pusatdata

Convert Image Colour to Greyscale with CSS

Jan 22nd, 2017
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. http://thenewcode.com/532/Convert-Images-To-Black-And-White-With-CSS
  2.  
  3. <style>
  4. .bw {
  5. -webkit-filter: grayscale(1) !important;
  6. -moz-filter: grayscale(1) !important;
  7. -ms-filter: grayscale(1) !important;
  8. filter: grayscale(1) !important;
  9. }
  10. </style>
  11.  
  12. <img src="http://pustakakoran.com/img/cover/radarbojonegoro20170122.zip.jpg" width="100px" class="bw">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement