Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

drag the correct symbols to the boxes in the code sample in order to co…

Question

drag the correct symbols to the boxes in the code sample in order to complete the syntax of the css rule set. the symbols may be used more than once or not at all.
core4 - microsoft visual studio
view website build debug team tools test r tools analyze window
debug any cpu microsoft edge
complete.html index.html main.css
1 body
2 font - family: segoe ui, tahoma, sans - serif
3
4 p
5 color: navy
6
7

Explanation:

Brief Explanations

In CSS, a rule set starts with a selector (like body or p). After the selector, we use { to open the declaration block. Inside the block, each property - value pair ends with ;. And we use } to close the declaration block.

For the body selector:

  • After body, we need to open the declaration block with { (so the first box (line 1) is {).
  • The property - value pair font - family: 'Segoe UI',Tahoma, sans - serif should end with ; (so the box after this property (line 2) is ;).
  • Then we close the body declaration block with } (line 3 box is }).

For the p selector:

  • After p, open the declaration block with { (line 4 box is {).
  • The property - value pair color: navy ends with ; (line 5 box is ;).
  • Then close the p declaration block with } (line 6 box is }).

Answer:

Line 1: {; Line 2: ;; Line 3: }; Line 4: {; Line 5: ;; Line 6: }