Target Selector

Target Selector example

by Ananda Projapati

HTML

<div class="section">
  <p><a href="#sec1">Section 1</a></p>
  <p><a href="#sec2">Section 2</a></p>
  <p id="sec1"><b>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever</b></p>
  <p id="sec2"><b>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever</b></p>
</div>

CSS

p:target {
  background-color: #333;
  color: #fff;
}