HTML CSS examples for CSS Widget:Color
Set IMG element color property
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> img {<!-- ww w . j av a 2 s . c o m--> height:200px; width:200px; color:green; } </style> </head> <body> <img alt="This is some text." src="https://www.java2s.com/style/demo/Opera.png"> </body> </html>