selector {
    font-style: /* normal | italic | oblique */
}
italic vs. oblique
italic vs. oblique
h2 {
    font-style: italic;
}
h2:hover {
    font-style: normal;
}
<h2>Heading 2</h2>
실제 적용된 모습 마우스 커서를 글자에 올리면 normal(일반)로 변경됩니다.
selector {
    font-style: /* value */
}
font-style: normal;
font-style: italic;
font-style: oblique;

/* 전역 값 */
font-style: inherit;
font-style: initial;
font-style: unset;
font-style: revert;
font-style: revert-layer;
<em>em</em>
<hr>
<i>i</i>
<hr>
<cite>cite</cite>
<hr>
<dfn>dfn</dfn>
<hr>
<address>address</address>
<hr>
<var>var</var>
실제 적용된 모습