侧边栏壁纸
博主头像
落叶人生博主等级

走进秋风,寻找秋天的落叶

  • 累计撰写 128988 篇文章
  • 累计创建 28 个标签
  • 累计收到 9 条评论
标签搜索

目 录CONTENT

文章目录

文本内容不管有多少始终能垂直居中:

2024-04-28 星期日 / 0 评论 / 0 点赞 / 2 阅读 / 1041 字

html文件: <div class = "parent"> <div class = "left"></div> <div class = "right"> <div c

html文件:

<div  class = "parent">

        <div class = "left"></div>

       <div class = "right">

               <div class = "son">

                       <div class="content">一行我要垂直居中,两行三行我也要垂直居中</div>

               </div>

      </div>

</div>

css文件:

.right{

width:100%;

height:2rem;

}

.son{

width:100%;

height:2rem;

display: table;

.content{

width:100%;

height:2rem;

display: table-cell;

vertical-align: middle;

word-wrap: break-word;

word-break: break-all;

 

广告 广告

评论区