Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 571 Bytes

copyleft.md

File metadata and controls

21 lines (18 loc) · 571 Bytes

Copyleft 符号

利用 js 把版权符号旋转180度即可(参考Copyleft),实现方法:

    <style>
    .copy-left {
        display: inline-block;
        text-align: right;
        margin: 0;
        -moz-transform: scaleX(-1);
        -o-transform: scaleX(-1);
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
        filter: FlipH;
        -ms-filter: "FlipH";
    }
    </style>
 
    <p><span class="copy-left">&copy;</span><span>&nbsp;Copyleft</span></p>