2020/6/16

html background自适应不剪切

                background-image:url(/static/img/background.jpg); background-repeat:no-repeat; background-size:10…

  • css html
  • 2020/6/16
  • 619
  • 2020/6/16

    html button点击边框

    button:focus{outline:none;}

  • css html
  • 2020/6/16
  • 659
  • 2020/6/16

    input placeholder颜色

            input::-webkit-input-placeholder {  /* WebKit browsers */  color: #fff;  }  input:-moz-placeholder…

  • css
  • 2020/6/16
  • 618
  • 2020/6/12

    微信小程序text超出省略/文本超出省略

      text-overflow:ellipsis;   overflow:hidden;   display:-webkit-box;   -webkit-line-clamp:3;   /*设置要显示省略号的行数*/   -webkit…

  • css 微信小程序
  • 2020/6/12
  • 650
  • 2020/6/10

    css文字超出隐藏

    display: -webkit-box;  /*设置为弹性盒子*/     overflow:hidden; //超出一行文字自动隐藏     text-overflow:ellipsis;//文字隐藏后添加省略号 …

  • css html
  • 2020/6/10
  • 635
  • 2020/6/6

    js自定义属性

    理解 :root 和 var() 自定义属性是一个名称以两个连字符( - )开头的属性,如 --foo。 定义后可以使用 var() 引用的变量。 css :root {     --view-height: 0; } 在:root选择器中…

  • css html JavaScript
  • 2020/6/6
  • 587
  • 2020/6/2

    html背景图

    /* 背景图垂直、水平均居中 */     background-position: center center;     /* 背景图不平铺 */     background…

  • css html
  • 2020/6/2
  • 895