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;
}
by Louis Walch
<div class="34232423_test test">
Testing ends with selector
</div>
DIV.test {
margin: 20px;
padding: 20px;
background: #ccc;
}
DIV[class$="test"] {
background-color: green;
}