css change class name start with

Solutions on MaxInterview for css change class name start with by the best coders in the world

showing results for - "css change class name start with"
Noelie
05 Jun 2018
1/* CSS pure */
2div[class^='myclass'], div[class*=' myclass']{
3    color: #F00;
4}
5
6/* css change class name start with styled components */
7& [class^='Pagination-activeButton'],
8[class*=' Pagination-activeButton'] {
9  span {
10    color: #fa751f !important;
11  }
12}