SOURCE

console 命令行工具 X clear

                    
>
console
<div class="wrapper">
    <div class="left">
        <div class="img"></div>
    </div>
    <div class="right">
        <div class="text">
            运营后台添加文本输出框:拉黑原因,且文字控制在100个字以内,当前字段为必填项 编辑区域输入文字或符号,字数提示会根据文本框中的实时逐渐递减。当文本框中文字或字符已达上限,则显示toast,字数已达上限
        </div>
    </div>
</div>
.left {
    display: table-cell;
    vertical-align: top;
}

.img {
    width: 50px;
    height: 50px;
    background-color: pink;
}

.right {
    /* tabel-cell 与 inline-block 的区别?*/
    display: table-cell;
    vertical-align: top;
}

.text {
    margin-left: 10px;
}

.wrapper {
    height: 500px;
    background-color: yellow;
    display: table;
}