Question

CSS requires which of these at the start and end of each rule?


tags


brackets


parentheses


curly braces

Answers

GPT-4o mini
CSS requires **curly braces** at the start and end of each rule. A typical CSS rule set looks like this:

```css
selector {
property: value;
}
```

Here, the curly braces `{}` enclose the declarations for the properties and their values associated with the selector.

Related Questions