分享一下成功案例

来源:3-7 编程练习

喜欢学习的

2018-09-05 15:06

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />

<title>3.1页面头部制作练习题</title>

<style type="text/css">

/*在此定义相关样式,控制列表的显示形式*/

.box{

    

}

.box li{

    float:left;

    width:50px;

    height:30px;

    list-style-type:none;

}


.box a{

    display:block;

    text-align:center;

    line-height:30px;

    text-decoration:none;

}

.box a:hover{

    background-color:#BE3948;

    color:white;

}

</style>

</head>


<body>

<h3>课程难度</h3>


<!--在此制作一个无序列表-->


<ul class="box">

    <li><a href="">全部</a></li>

    <li><a href="">初级</a></li>

    <li><a href="">中级</a></li>

    <li><a href="">高级</a></li>

</ul>



</body>

</html>


写回答 关注

2回答

  • 慕用5168072
    2018-11-19 14:52:21

    你这个是不对的。

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml">

    <head>

    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />

    <title>3.1页面头部制作练习题</title>

    <style type="text/css">

    /*在此定义相关样式,控制列表的显示形式*/

    .box li{

        list-style-type:none;

        float:left;

        line-height:30px;

        text-align:center;

    }

    .box a{

        text-decoration:none;

        display:block;

        width:50px;

        height:30px;

    }

    .box a:link,.box a:visted{

        text-decoration:none;

        color:black;

    }

    .box a:hover,.box a:active{

        color:white;

        background-color:red;

        

    }


    </style>

    </head>

    <body>

    <h3>课程难度</h3>


    <!--在此制作一个无序列表-->

    <div class="box">

    <ul>

        <li><a href="#">全部</a></li>

        <li><a href="#">初级</a></li>

        <li><a href="#">中级</a></li>

        <li><a href="#">高级</a></li>

    </ul>

    </div>




    </body>

    </html>


  • SJLPEAR
    2018-09-18 15:21:29

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml">

    <head>

    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />

    <title>3.1页面头部制作练习题</title>

    <style type="text/css">

    /*在此定义相关样式,控制列表的显示形式*/



    li{

        width:50px;

        height:30px;

       

       

        text-decoration:none;

        

         text-align:center;

         float:left;

         list-style-type:none;

    }

    a{

        display:block;

    }




    a:link,a:visited{

      color:black;

      text-decoration:none;

         

    }

     a:hover,a:active{

       

         background-color:#BE3948;

        

        color:white;


       

      

    }





    </style>

    </head>


    <body>

    <h3>课程难度</h3>


    <!--在此制作一个无序列表-->


    <ul>

        <li><a href="#" >全部</a></li>

        <li><a href="#" >初级</a></li>

        <li><a href="#" >中级</a></li>

        <li><a href="#" >高级</a></li>

    </ul>    

        

        






    </body>

    </html>


企业网站综合布局实战

本课程重点介绍HTML/CSS实现常见企业网站布局的方法

157042 学习 · 1984 问题

查看课程

相似问题