赞
踩
1、多行居中效果
2、单行照样居中效果
- <view class="title">
- <view class="word">
- 大众ABS传感器速腾迈腾途观新捷达CC一汽高尔夫6明锐前后轮速原厂
- </view>
- </view>
-
- .title {
- width: 100%;
- height: 55px;
- margin-bottom: 6px;
- font-size: 15px;
- font-weight: bold;
- padding-left: 10px;
- background-color: rgb(255, 255, 255);
- }
-
- .word {
- width: 96%;
- /* height:40px; */
- height:auto;
- font-size: 15px;
- font-weight: bold;
- position: relative;
- top: 50%;
- -webkit-transform: translateY(-50%);
- -ms-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- <html>
- <body>
-
- <div class="parent">
- <div class="child"></div>
- <div class="child"></div>
- <div class="right">
- <div class="content">
- 通过这种方式,左边两个子div的宽度将保持不变,右边的子div将自动适应父容器中剩余的宽度。你可以根据自己的要求,修改示例中的宽度和背景颜色等样式属性来适应你的需求。
- </div>
- </div>
- </div>
- </body>
- <style>
- .parent {
- display: flex;
- }
-
- .child {
- height: 80px;
- width: 200px;
- background-color: antiquewhite;
- border: 1px solid #000;
- }
-
- .right {
- height: 80px;
- flex-grow: 1;
- background-color: rgb(220, 220, 243);
- display: flex;
- align-items: center; /* 垂直居中 */
- }
-
- .content {
- margin: 0 auto; /* 左右居中 */
- text-align: center; /* 文本居中 */
- }
- </style>
- </html>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。