为啥滚动新闻不能到最左边呀?

来源:7-1 编程挑战

慕仰5533636

2018-08-14 11:21

 html中的内容
/div>
        <div class="news">
            <div>
                <ul>
                    <li class="news-bar">滚动新闻<spacer.gif>
                    <li >这是滚动新闻<spacer.gif>
                </ul>
            </div>
            <div></div>
            <div></div>
    </div>
css样式:

.nav-bar
    {
        width:1000px;
        height:40px;
       margin:0 auto;
    }
   .nav-bar-pic img
   {
       float: left;
      width:200px; 
      height:40px;

   }
   .nav-bar-list
   {
        width:800px;
        height:40px;
        line-height:40px;
   }
    .nav-bar-list ul li
    {
        float: left;
        list-style-type:none;
        width:80px;
        text-align:center;
    }
    .nav-bar-list ul li a
    {
        text-decoration:none;
        color:#000;
    }
     .nav-bar-list ul li a:hover, .nav-bar-list ul li a:active
     {
         background-color:red;
        
     }
     .pic
     {
       background-color:red;
       width:1000px;
     }
    .news
    {
        background-color:#333;
        width:1000px;
        height:40px;
        
    }
    .news li
    {
        list-style-type:none;
        float:left;
        text-align:center;
        line-height:40px;
        color:#fff;
     
    }
    .news-bar
    {
         background-color:red;
         line-height:40px;
         margin:0px;
      
    }


 我做出的效果
https://img.mukewang.com/5b724a670001770003210094.jpg

需要的效果
 spacer.gifhttps://img1.mukewang.com/5b724aa8000131fc04580030.jpg


写回答 关注

1回答

  • 喜欢学习的
    2018-09-06 15:07:34

    *{

    margin:0px;

    padding:0px;

    }

企业网站综合布局实战

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

157042 学习 · 1984 问题

查看课程

相似问题