【发布时间】:2020-04-13 22:56:24
【问题描述】:
斜体我没有问题,但是当需要下划线或上划线时,我无法弄清楚。
<!DOCTYPE html>
<html>
<body>
<head>
<title>CSS Properties</title>
<style>
</style>
</head>
</body>
<h1>CSS Properties Quiz</h1>
<p style="font-style: italic;">
This is how you italicize in CSS.
</p>
<p>
You can also <em>italicize</em> using <em>html</em>.
</p>
<p class="under">
I hope that this underlines the text.
</p>
<p class="over">
Will this overline? Probably not.
</p>
【问题讨论】: