zoukankan      html  css  js  c++  java
  • css自适应 未知宽度div居中 溢出显示...等常用样式渲染

    css自适应:https://blog.csdn.net/qq_17518593/article/details/52689178

    div未知宽度居中:https://blog.csdn.net/rongku/article/details/40452231

        display: flex;
        align-items: center;
        justify-content: center;

    Addby 2020-5-28

    溢出部分使用...进行超出宽度的隐藏

        /*溢出显示...*/
        overflow:hidden;
        white-space:nowrap;
        -o-text-overflow:ellipsis;
        text-overflow:ellipsis;

     Endby 2020-5-28

    AddBy 2020-09-09

    IE中数据框去除×符号

    ::-ms-clear, ::-ms-reveal{
        display:none;
    }

    EndBy 2020-09-09

    AddBy 2020-09-13

    关于css样式中textarea自动换行差异:(同步于 2.关于css样式中textarea自动换行差异)

    word-break:break-all;  /* 非IE下textarea自动换成*/
    word-wrap : break-word;  /* 非IE下textarea自动换成*/

    EndBy 2020-09-13

    AddBy 2021-04-23

    自动换行

        word-wrap:break-word;
        word-break:normal; 

    EndBy 2021-04-23

  • 相关阅读:
    11、angular 的依赖注入
    gulp插件列表
    gulp 列表
    gulp 教程
    html5模板
    yeoman官网
    node.js 增删改查(原始)
    配置MongoDB
    MongoDB手稿
    node.js 手稿
  • 原文地址:https://www.cnblogs.com/namejr/p/11934990.html
Copyright © 2011-2022 走看看