老师麻烦帮忙检查一下代码 谢谢~~
来源:2-5 编程练习
慕粉2243585596
2020-04-30 18:46:20
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>IMOOC</title>
<style type="text/css">
*{
padding: 0;
margin: 0;
font-family: "微软雅黑";
}
section{
width: 1200px;
margin: 20px auto 0;
overflow: hidden;
}
section>aside{
float: left;
width: 450px;
}
section>article{
float: right;
width: 720px;
}
section p{
font-size: 16px;
}
section h1{
font-size: 30px;
margin-bottom: 20px;
}
section h1>samp{
font-size: 30px;
color:#999;
}
section>aside>dl{
height: 100px;
position: relative;
}
section>aside>dl>dt{
font-weight: bold;
text-decoration: underline;
position: absolute;
left: 85px;
top: -1px;
font-size: 16px;
line-height: 16px;
}
section>aside>dl>dd:first-of-type{
position: absolute;
left: 20px;
}
section>aside>dl>dd:last-of-type{
position: absolute;
left: 85px;
font-size: 14px;
top: 20px;
}
section>aside>dl>span{
color: #fff;
position: absolute;
left: 38px;
font-size: 24px;
top: 8px;
}
section>article>img{
height: 200px;
}
section>article>p,section>article>img{
margin-bottom: 20px;
}
</style>
</head>
<body>
<!-- 在此完成网页的HTML代码-->
<section>
<aside>
<h1>Recent <samp>Course</samp></h1>
<dl>
<dt>Hyper Text Markup Language</dt>
<dd><img src="http://climg.mukewang.com/582e61290001787900500051.png"></dd>
<span>1</span>
<dd>HTML is the standard markup language used to create web pages and its elements form the building blocks of all websites.</dd>
</dl>
<dl>
<dt>Hyper Text Markup Language</dt>
<dd><img src="http://climg.mukewang.com/582e61290001787900500051.png"></dd>
<span>2</span>
<dd>HTML is the standard markup language used to create web pages and its elements form the building blocks of all websites.</dd>
</dl>
<dl>
<dt>Hyper Text Markup Language</dt>
<dd><img src="http://climg.mukewang.com/582e61290001787900500051.png"></dd>
<span>3</span>
<dd>HTML is the standard markup language used to create web pages and its elements form the building blocks of all websites.</dd>
</dl>
<dl>
<dt>Hyper Text Markup Language</dt>
<dd><img src="http://climg.mukewang.com/582e61290001787900500051.png"></dd>
<span>4</span>
<dd>HTML is the standard markup language used to create web pages and its elements form the building blocks of all websites.</dd>
</dl>
</aside>
<article>
<h1>Welcome to <samp>Massive Open Online Course!</samp></h1>
<p>We provide the latest knowledge to help you cope with the changing world!</p>
<img src="http://climg.mukewang.com/582e61180001ede703300130.jpg">
<p>We hope that all the students who love the Internet can be more convenient access to learning access to learning resources,using the Internet thinking to change our learning.</p>
<p>We hope that all the students who love the Internet can be more convenient access to learning access to learning resources,using the Internet thinking to change our learning.</p>
</article>
</section>
</body>
</html>1回答
好帮手慕慕子
2020-04-30
同学你好,代码实现正确,继续加油,祝学习愉快~
相似问题