自学内容网 自学内容网

css样式H5限制

样式限制使用记录
1、align-items center可以用,end不行
justify-content: end;
/* ---- 改成下面的写法 ---- */
justify-content: flex-end;

2、align-self top不能用 华为有的手机不适配
size是24的有文字icon的行高至少给30

3、display:flex;gap:16rpx; ios gap失效

4、渐变字体样式需要给省略号给个颜色

<div class="text-nick-name text-hidden":text="我们都是好孩子">我们都是好孩子"</div>

                .text-nick-name {
                  position: relative;
                  font-weight: 400;
                  font-size: 0.25rem;
                  color: #FF7B3A;
                  &::before {
                    content: attr(text);
                    position: absolute;
                    left: 0;
                    right: 0;
                    -webkit-text-stroke: initial;
                    color: transparent;
                    -webkit-text-stroke: initial;
                    background: linear-gradient(to bottom,  #FFF728, #FF7B3A 80%);
                    background-clip: text;
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                    overflow: hidden;
                    color: #FF7B3A;
                  }
                }


原文地址:https://blog.csdn.net/qq_29715077/article/details/145145539

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!