0

I have used CSS Select all element * *. Now using node-* class name dynamically changed for node-1, node-2.

.page-node #node-* p {
  font-size: 16px;
}

It's Possible for CSS.

tamilselvancst
  • 478
  • 1
  • 3
  • 19

1 Answers1

0

Try doing a attribute match on the id.

.page-node [id^=node-] p {
  font-size: 20px;
}

http://www.w3schools.com/cssref/sel_attr_begin.asp

backpackcoder
  • 327
  • 1
  • 7