lexborisov / Modest

Modest is a fast HTML renderer implemented as a pure C99 library with no outside dependencies.
GNU Lesser General Public License v2.1
732 stars 65 forks source link

How to add multiple selectors to a mycss_selectors_list_t ? #38

Closed GuacheSuede closed 6 years ago

f34nk commented 6 years ago

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));

lexborisov commented 6 years ago

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

GuacheSuede commented 6 years ago

@lexborisov @f34nk has answered it, Thanks :)