Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

drag the correct line of code to the box in the code sample to complete…

Question

drag the correct line of code to the box in the code sample to complete the id selector.
id{
.sidenote (
@id (
#sidenote (
body (
font family:segoe ui, tahoma, sans-serif;
background - color:#fab66b
)
p (
color: navy;
)
.sale (
font - weight: bold;
background - color:aqua;
)

background - color:#dbd9d9;
)

Explanation:

Brief Explanations

In CSS, an ID selector is denoted by a hash symbol (#). The other options are incorrect: id{ is not a valid CSS selector syntax for an ID; .sidenote( is a class selector (denoted by a dot .); @ID ( is not valid CSS syntax.

Answer:

#sidenote {