修改下面代码要求任意改变一部分样式!DOCTYPE htmlhtml lang=enhead meta charset=UTF-8 meta name=author content=Xue Huanqun titleTitletitle style type=textcss pmix1 font-style normal; font-family Times N
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Xue Huanqun">
<title>Title</title>
<style type="text/css">
p.mix1 {
font-style: normal;
font-family: "Times New Roman",宋体,楷体,Arial;
font-size: 1cm;
font-weight: normal;
font-variant: small-caps;
color: RGB(10,10,125);
}
p.mix2 {
font-style: italic;
font-size: 1cm;
font-weight: bold;
font-variant: small-caps;
color: green;
}
p.mix3 {
font-style: oblique;
font-family: Arial, "Times New Roman", 宋体;
font-size: 25px;
font-weight: normal;
color: #F90;
text-decoration: underline;
}
</style>
</head>
<body>
<p class="mix1">THIS IS A PARAGRAPH IN NORMAL STYLE.</p>
<p class="mix2">This is a paragraph in italic style.</p>
<p class="mix3">This is a paragraph in oblique style.</p>
</body>
</html>
<p>修改内容:</p>
<ol>
<li>将mix2段落的字体颜色改为绿色。</li>
<li>将mix3段落的字体大小改为25px。</li>
<li>将mix3段落的字体颜色改为橙色。</li>
<li>在mix3段落中添加下划线</li>
</ol>
原文地址: https://www.cveoy.top/t/topic/d6Z1 著作权归作者所有。请勿转载和采集!