Splunk Infrastructure Overview — Question 57
Which syntax is used when referencing multiple CSS files in a view?
Answer options
- A. <dashboard stylesheet="custom.css, userapps.css">
- B. <dashboard style="custom.css, userapps.css">
- C. <dashboard stylesheet=custom.css stylesheet=userapps.css>
- D. <dashboard stylesheet="custom.css | userapps.css">
Correct answer: A
Explanation
Option A is correct as it properly uses a comma to separate multiple CSS files in the 'stylesheet' attribute. The other options are incorrect; B uses 'style' instead of 'stylesheet', C uses incorrect syntax for multiple stylesheets, and D incorrectly uses a pipe '|' instead of a comma.