• div中宽高度自适应文字换行居中问题解决


    <html>
        <head>
            <meta charset="UTF-8"/>
            <title>div中宽高度自适应文字换行居中demo</title>
        </head>
        <style type="text/css">
            .fatherbox{
                width: 200px;
                height: 300px;
                text-align: center;
                /* start 以下为样式内容,不重要*/
                border: 1px solid red;
                background: green;
                /* end 以上为样式内容,不重要*/
            }
            .childbox1{
                display: inline-block;
                vertical-align: middle;
                /* start 以下为样式内容,不重要*/
                background: blue;
                color: #fff;
                padding: 10px;
                /* end 以上为样式内容,不重要*/
            }
            .childbox2{
                display: inline-block;
                vertical-align: middle;
                height: 100%;
            }
        </style>
        <body>
            <div class="fatherbox">
                <div class="childbox1">
                    我是居中内容1<br/>
                    我是居中内容1<br/>
                    我是居中内容1<br/>
                    我是居中内容1
                </div>
                <div class="childbox2"></div>
            </div>
        </body>
    </html>

    div中宽高度自适应文字换行居中demo实现

    我是居中内容1
    我是居中内容1
    我是居中内容1
    我是居中内容1
     

    原文出自:https://www.iteye.com/blog/fp-moon-1150774

  • 相关阅读:
    Java 构造方法总结
    Intellij IDEA使用总结
    阿里巴巴Java开发手册
    灰度发布策略
    php redis 命令合集
    php redis 常用方法
    php excel 设置单元格格式为文本格式
    php curl get post 方法的封装
    PHP 判断手机号归属地 和 运营商的免费接口
    lnmp centos7 memcache服务器端 和 memcache memcached扩展的安装
  • 原文地址:https://www.cnblogs.com/xiaojianwei/p/11927121.html
Copyright © 2020-2023  润新知