Eleeist
Eleeist

Reputation: 7041

How to import multiple stylesheets with @Import

Currently I have this above my class:

@Import(stylesheet="context:/styles/stylesheet1.css")

But I need to import more styles for this page.

How can I import more than one stylesheet with @Import?

Upvotes: 1

Views: 1079

Answers (1)

Eleeist
Eleeist

Reputation: 7041

Found the solution:

@Import(stylesheet = {"path-to-stylesheet","path-to-stylesheet"})

Upvotes: 4

Related Questions