zoukankan      html  css  js  c++  java
  • 强制换行

    自动换行

     

    div{  
    word-wrap: break-word;  
    word-break: normal;  

    强迫不换行

     

    div{  
    white-space:nowrap;  
    }


    带有浮动效果的 不换行

    复制代码
    <div id="pic">
                    
    <ul>
                        
    <li><img src="http://192.168.1.103/hibeans/web/images/temporary/car_t1.jpg" /></li>
                        
    <li><img src="http://192.168.1.103/hibeans/web/images/temporary/imgget1.jpg" /></li>
                        
    <li><img src="http://192.168.1.103/hibeans/web/images/temporary/car_t1.jpg" /></li>
                        
    <li><img src="http://192.168.1.103/hibeans/web/images/temporary/car_t1.jpg" /></li>
                        
    <li><img src="http://192.168.1.103/hibeans/web/images/temporary/car_t1.jpg" /></li>
                        
    <li><img src="http://192.168.1.103/hibeans/web/images/temporary/car_t1.jpg" /></li>
                        
    <li><img src="http://192.168.1.103/hibeans/web/images/temporary/car_t1.jpg" /></li>
                        
    <li><img src="http://192.168.1.103/hibeans/web/images/temporary/car_t1.jpg" /></li>
                        
    <li><img src="http://192.168.1.103/hibeans/web/images/temporary/car_t1.jpg" /></li>
                        
    <li><img src="http://192.168.1.103/hibeans/web/images/temporary/car_t1.jpg" /></li>
                     
    </ul>
                
    </div>
    复制代码
    #pic {float:left; width:920px; margin:0 10px;}
    #pic ul 
    {margin:15px 0; white-space:nowrap; width:920px; overflow:hidden;}
    #pic li 
    {*float:left; width:90px; margin:0 5px; *clear:right; border:1px solid #B7DEEF; text-align:center; display:inline-block}
    #pic li img 
    {max-width:90px; max-height:90px; vertical-align:middle;}
  • 相关阅读:
    仿淘宝首页产品展示橱窗
    Browserwidth defined font size自定义容器和字体大小
    fso操作大全
    .net学习区
    IE与Firefox的CSS兼容大全
    网易娱乐头图新闻代码
    PHPAccess数据库操作类
    锁定表列
    美化列表
    web_custom_request应用示例
  • 原文地址:https://www.cnblogs.com/longze/p/3023887.html
Copyright © 2011-2022 走看看