lexborisov/Modest

How to add multiple selectors to a mycss_selectors_list_t ?

GuacheSuede opened this issue · 3 comments

How to add multiple selectors to a mycss_selectors_list_t ?
f34nk commented

You can separate multiple selectors with a comma.

const char* selector = "div, a";

mycss_selectors_list_t *selectors_list = prepare_selector(css_entry, selector, strlen(selector));

I did not quite understand the question. What is the problem?

@lexborisov @f34nk has answered it, Thanks :)