CSSsyntax
CSS syntax, CSS selectors
CSSsyntax
AssignstylepropertiesandtheirvaluestoaCSSselector
selector{
property:value;
property:value;
property:value;
}
CSSselectors
StyleallelementswiththeHTMLtag<p>
p{
property:value;
property:value;
property:value;
}
<p>Sometext</p>
CSSselectors
StyleallelementswiththeHTMLclass"primary"
.primary{
property:value;
property:value;
property:value;
}
<buttonclass="primary">
Sometext
</button>
CSSselectors
StyleallelementswiththeHTMLidlogin
#login{
property:value;
property:value;
property:value;
}
<buttonid="login">
Sometext
</button>