Hexo


  • Home

  • Archives

css tips

Posted on 2020-01-02

CSS技巧

  1. 让文字不被选中

    1
    2
    3
    4
    5
    .text {
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    }
  2. 让图片不被选中

    1
    2
    3
    4
    5
    6
    7
    img {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    user-select: none;
    }
    Read more »

The First Week

Posted on 2019-12-26

Algorithm

打卡计划-123
Read more »

Hello World

Posted on 2019-12-25

哈哈哈

Rudy

3 posts
1 tags
© 2020 Rudy
Powered by Hexo
|
Theme — NexT.Gemini v5.1.4