老师,为什么aside下面的dl设置全部没有起作用呢?我应该怎么修改?

老师,为什么aside下面的dl设置全部没有起作用呢?我应该怎么修改?

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <title>IMOOC</title>

    <style type="text/CSS">

    *{padding:0;

    margin:0;

}

seation{width:1200px;

    height: 500px;

margin:30px auto;}


aside{width:480px;

    height: 500px;

    float: left;

}

h1{font-size:30px;

   display:block;

   margin-bottom: 20px; }

h1>span{

    color:#7c7c7c;

    font-size:30px;

}

aside > h1> dl{

position:relative;

display: block;

height: 80px;

width:480px;

margin-bottom:20px;}

aside>h1>dl>dt{

    font-size 16px;

    font-weight: bold;

    line-height: 16px;

    text-decoration:underline;

    position:absolute;

    top: -1px;

    left:60px;

}

aside>h1>dl>dd:first-of-type{

    width:50px;

    height:51px;

    position: absolute;

    left:0

}


aside>h1>dl>dd>div{

    color:white;

    font-size: 18px;

    line-height:51px;

    position: absolute;

    left:25px;

    z-index: 2;

}

aside>h1>dl>dd:last-of-type{

    

    position:absolute;

    left:60px;

    margin-bottom;:20px;

}


article{width:720px;

    height: 500px;

    float: right;}

article>p,article>img{

    margin-bottom: 20px;

}

article img{overflow: hidden;}

    </style>

</head>

<body>

    <!--  在此完成网页的HTML代码-->

    <section>

        <aside>

            <h1> Recent <span>Course</span></h1>

            <dl>

                <dt>Hyper Text Markup Language</dt>

                <dd><img src="http://img1.sycdn.imooc.com/climg//582e61290001787900500051.png"/><div>1</div></dd>

                <dd>HTML is th standard Markup Language used to create web pages and its elements form the building blocks of all websites.</dd>

            </dl>

             <dl>

                <dt>Cascading Style Sheets</dt>

                <dd><img src="http://img1.sycdn.imooc.com/climg//582e61290001787900500051.png"/><div>2</div></dd>

                <dd>Cascading Style Sheets(CSS)is a simple mechanism for adding Style(e.g.fonts,colors,spacing)to the web documents.</dd>

            </dl>

             <dl>

                <dt>JavaScript</dt>

                <dd><img src="http://img1.sycdn.imooc.com/climg//582e61290001787900500051.png"/><div>3</div></dd>

                <dd>JavaScript is a high-level,dynamic,untyped,and interpreted programming Language.</dd>

            </dl>

             <dl>

                <dt>AngularJS</dt>

                <dd><img src="http://img1.sycdn.imooc.com/climg//582e61290001787900500051.png"/><div>4</div></dd>

                <dd>AngularJS is an open-source web application framework mainly maintained by Google and by a community of individuals and.....</dd>

            </dl>

        </aside>

        <article>

            <h1>Welcome to<span> Massive Open Online Course</span>!</h1>

            <p>We provide the latest knowledge to help you cope with the changing world !</p>

            <img src="http://img1.sycdn.imooc.com/climg//582e61180001ede703300130.jpg">

             <p>We hope that all the students who love the internet can be more convenient access to learning resources,using the internet thinking to the change our learning.</p>

              <p>Focus On IT skills education MOOC, consistent with the development trend of the internet down to earth's MOOC.

We are free,we only teach useful ,we concentrate on education.</p>

        </article>

        

    </section>

</body>

</html>



正在回答 回答被采纳积分+1

登陆购买课程后可参与讨论,去登陆

2回答
好帮手慕粉 2020-05-11 09:29:23

同学你好,能自己找到问题并进行解决,很棒!继续加油,祝学习愉快~

好帮手慕粉 2020-05-10 18:44:07

同学你好,关于同学的问题回答如下:

1、首先是样式标签书写错误,或者是标点符号的问题:

http://img1.sycdn.imooc.com//climg/5eb7d9a209f1667904760168.jpg

http://img1.sycdn.imooc.com//climg/5eb7d9b009b9a3fd04490246.jpg

http://img1.sycdn.imooc.com//climg/5eb7d9bb09fd114005200175.jpg

同学在写的时候要认真点呢。

2、其余的可以通过定位来实现,老师先给同学举个例子:

http://img1.sycdn.imooc.com//climg/5eb7dac60931b25b10870227.jpg

http://img1.sycdn.imooc.com//climg/5eb7dad709adb4a508730720.jpg

效果图:

http://img1.sycdn.imooc.com//climg/5eb7dae2099f7aa104980208.jpg

其余的结构都是一样的,同学可以参考着实现一下。

祝学习愉快~

  • 提问者 慕用6222994 #1
    老师,我有定位呀,为什么我的定位不行呢?一点作用也没有?我把你说的小问题改了,但是我的定位也没有起作用
    2020-05-10 19:50:56
  • 提问者 慕用6222994 #2
    aside > dl{ position:relative; display: block; height: 80px; width:450px; margin:0px auto;} aside>dl>dt{ font-size:16px; font-weight: bolder; line-height: 16px; text-decoration:underline; position:absolute; top: -100px; left:60px; } aside>dl>dd:first-of-type{ width:50px; height:51px; position: absolute; left:0 } aside>dl>dd>div{ color:white; font-size: 18px; line-height:51px; position: absolute; left:25px; z-index: 2; } aside>dl>dd:last-of-type{ position:absolute; left:60px; margin-bottom:20px; }
    2020-05-10 19:58:18
  • 提问者 慕用6222994 #3
    就这段代码,写上去一点反应都没有。样式都没有变,我很纳闷,不知道哪里错了
    2020-05-10 19:58:56
问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星
请稍等 ...
意见反馈 帮助中心 APP下载
官方微信

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师