CSS Ends With

by Louis Walch

HTML

<div class="34232423_test test">
Testing ends with selector
</div>

CSS

DIV.test {
  margin: 20px;
  padding: 20px;
  background: #ccc;
}

DIV[class$="test"] {
  background-color: green;
}