Coincidence of the identifier in CSS styles
There are many cases when you want to add style to an element that can have generated entities.
Conditionally speaking several blocks on the Identifiers page of which they start on "body_list_item_" and then 1, 2, 3 ....
To add style to such items you can use this code:
[id^="body_list_item_"] {
/*your-style*/
}
To add which item you can make such a record, for example - form:
form[id^="body_list_item_"] {
/*your-style*/
}