zoukankan      html  css  js  c++  java
  • HTML DIV中文字自动换行 , 顶部对齐

    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="utf-8" />
            <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
            <title>demo</title>
            <style type="text/css">
                .box {
                    position: relative;
                    width: 500px;
                    height: 300px;
                    border: 1px solid #FFF;
                    background-color: #999;
                    display: table;
                }
                
                .wrap{
                    display: table-cell;
                    vertical-align: middle;    
                    *position:absolute;
                    *top: 50%;
                    *left: 0;
                }
                
                .content {
                    *position: relative;
                    *top: -50%;
                    *left: 0;
                }          
                
            </style>
        </head>
        <body>
     <div>
         <table>
             <tr>
                 <!-- div中文字自动换行--->
                 <td><div style="word-wrap:break-word;word-break:break-all;padding-left: 5px; 150px;"><span>@item[0000000000000000000000000000000000000000000000000000i].Column6 &nbsp;</span></div></td>
             </tr>
         </table>
     </div>
            <div class="box">
                <div class="wrap">
                    <p class="content">
                        我是文字随便几行我是文字随便几行我是文字随便几行我是文字随便几行我是文字随便几行我是文字随便几行
                        固定宽度的文字自动换行并垂直剧中">固定宽度的文字自动换行并垂直剧中</a>
                    </p>
                </div>
            </div>
            <div class="box">
     
                <div class="wrap">
                    <p class="content">
                        是文字随便几行我是文字随便几行我是文字随便几行我是文字随便几行我是文字随便几行我是文字随便几行是文字随便几行我是文字随便几行我是文字随便几行我是文字随便几行我是文字随便几行我是文字随便几行是文字随便几行我是文字随便几行我是文字随便几行我是文字随便几行我是文字随便几行我是文字随便几行
                    </p>
                </div>
            </div>
        </body>
    </html>

    文字顶部 对齐

    vertical-align: top; 在 table 中使用, 

     

      1. word-wrap: break-word;
      2. word-break: break-all;    自动换行
  • 相关阅读:
    深入理解javascript中的立即执行函数(function(){…})()
    多行文本溢出省略号显示
    JS学习思路
    canvas画圆
    软件需求与软件评估
    parawork功能使用说明
    ”0元中标的商业逻辑“ -- 如何更好防范项目风险(北京软件造价评估技术创新联盟:李培圣)
    parawork平台介绍
    基准化的软件绩效和成本度量
    jQuery对表格的操作及其他应用
  • 原文地址:https://www.cnblogs.com/enych/p/9489070.html
Copyright © 2011-2022 走看看