标签搜索

常用偏门CSS汇总

sunshine
2022-10-31 / 0 评论 / 109 阅读
温馨提示:
本文最后更新于2022年11月01日,已超过676天没有更新,若内容或图片失效,请留言反馈。

placeholder字体颜色怎么设置修改

::-webkit-input-placeholder {
  color: red;
}
::-moz-placeholder {
  color: red;
}
::-ms-placeholder {
  color: red;
}

flex布局最后一行未填充满居左排列问题

假设外层容器class为spec-row,每行排3个

.spec-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.spec-row:after {
    content: '';
    width: calc(100% / 3);
    height: 0;
    visibility: hidden;
}
感觉很棒,欢迎点赞 OR 打赏~
1
分享到:

评论 (0)

取消