Below is a div container:
HTML:
<div></div>
CSS:
div {
border: 1px solid blue;
height: 150px;
width: 250px;
background-color: blue;
-webkit-filter: invert(50%);
-moz-filter: invert(50%);
-o-filter: invert(50%);
-ms-filter: invert(50%);
}
Despite applying inversion effects for other browsers like Chrome, it does not work in Internet Explorer.