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.

0

1 Answer 1

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

Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.