跳到主要內容

[HTML] 文字浮水印效果 text watermark css

[.css]

.info-mask
{
    height: 0;  
    position: absolute;  
    margin-top:120px;  
}

.info-opacity
{
    opacity: 0.8;
    color: black;
}

.info-text
{
    color: gray;
    font-size: 40px;
    -webkit-transform: rotate(-5deg);  
    line-height: 60px;
    max-width:1200px;
    letter-spacing:3px;
    padding-left:0.8em;
}



[.html]

    <div class="info-mask">
        <p class="info-text">
            WaterMarkText
        </p>
    </div>


   <table class="table table-bordered table-striped table-responsive table-hover" style="position:                 relative;">
       <tbody class="info-opacity">
       </tbody>
   </table>

留言