久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長(zhǎng)資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      css怎么把字體拉長(zhǎng)

      在css中,可以利用transform屬性把字體拉長(zhǎng),當(dāng)該屬性與“scale()”函數(shù)配合使用時(shí),能夠?qū)υ剡M(jìn)行縮放轉(zhuǎn)換操作,語(yǔ)法為“文字元素對(duì)象{transform:scale(橫向比例值,縱向比例值);}”。

      css怎么把字體拉長(zhǎng)

      本教程操作環(huán)境:windows7系統(tǒng)、CSS3&&HTML5版、Dell G3電腦。

      css怎么把字體拉長(zhǎng)

      在css中,可以利用transform屬性來(lái)講字體拉長(zhǎng),下面我們通過(guò)示例來(lái)看一下,示例如下:

      <!DOCTYPE html> <html lang="en">   <head>     <meta charset="UTF-8" />     <meta name="viewport" content="width=device-width, initial-scale=1.0" />     <meta http-equiv="X-UA-Compatible" content="ie=edge" />     <title>拉伸的文字</title>   </head>   <body>     <p class="stretch">大家好,我是一段被拉伸的文字</p>   </body>   <style>     .stretch {       transform: scale(2, 1);       transform-origin: 0 0;     }   </style> </html>

      輸出結(jié)果:

      css怎么把字體拉長(zhǎng)

      (學(xué)習(xí)視頻分享:css視頻教程)

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)