color
background-color
bgcolor
None Of These
text-color
font-color
All of These
font-size
text-size
font-style
text-style
a {decoration:no-underline;}
a {underline:none;}
a {text-decoration:none;}
a {text-decoration:no-underline;}
You can't do that with CSS
transform:capitalize
text-style:capitalize
text-transform:capitalize
font-family
font-weight
style:bold;
font:bold;
font-weight:bold;
text:bold;
border-width:10px 1px 5px 20px;
border-width:5px 20px 10px 1px;
border-width:10px 20px 5px 1px;
border-width:10px 5px 20px 1px;
margin-left
indent
padding-left
left-margin
list-style-type: square;
list-type: square;
list: square;
list-style: square;
absolute
static
fixed
relative
p { color: red; }
p { color:rgb(255,0,0); }
p { color: rgba(255,0,0,1); }
all of the above
100rem
100%
100vw
100em
color: hsl(255, 0, 0);
color: hsl(0, 255, 0);
color: rgba(0, 0, 255, 1);
color: rgba(0, 0, 255, 0);
border-color
border-decoration
border-style
border-line
border-width
border-bottom
border-width-bottom
border-bottom-width
p { font-weight:bold; }
<p style=”font-size:bold;”>
p { text-size:bold; }
<p style=”text-size:bold;”>
a { underline:none; }
a { text-decoration:no-underline; }
a { decoration:no-underline; }
a { text-decoration:none; }