Change background using CSS

This is custome and pure css plugin for changing background color without using javascript

by Paras

HTML

<h1>COLOR CHANGER <span>LOVE TRIVEDI</span></h1>

<div id="foo">Target Element</div>

<!-- links to change the URL hash -->
<div>
  <a href="#foo">Red</a>
  <a href="#_">Green</a>
</div>

CSS

body, html{
	font-family:arial;
}
#foo{
	background:Green;
	color:#fff;

  }
  #foo:target { color: yellow; background:#ff0000;}