QUESTION IMAGE
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
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 - serifshould end with;(so the box after this property (line 2) is;). - Then we close the
bodydeclaration 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: navyends with;(line 5 box is;). - Then close the
pdeclaration block with}(line 6 box is}).
Snap & solve any problem in the app
Get step-by-step solutions on Sovi AI
Photo-based solutions with guided steps
Explore more problems and detailed explanations
Line 1: {; Line 2: ;; Line 3: }; Line 4: {; Line 5: ;; Line 6: }