HTML5項目筆記

【webstrom快捷鍵】
一、Ctrl + "+/-"                      收縮標籤
二、Ctrl+Shift + "+/-"                收縮所有標籤
三、Ctrl+Alt+L                 自動格式化html

全套快捷鍵在HTML5項目裏的doc文件web

【字體圖標】
一、之後用阿里雲的字體庫,阿里雲有unicode編碼
***二、因爲google瀏覽器設置的最低font-size是12px,要改變字體圖標大小,添加inline-block,以後再進行-webkit-transform: scale(0.7)進行縮放

 瀏覽器

【tabindex】字體

一、H5新屬性,控制tab鍵快捷跳轉google

二、tabindex的跳轉順序爲從小到大。若是直接點擊模塊中的tabindex序數最大的選項,則跳轉到他處,或者不跳阿里雲

<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        <p tabindex="-1">
            <a href="#" tabindex="3">Hello</a>
            <a href="#" tabindex="1">Hel</a>
            <a href="#" tabindex="2">Hell</a>
        </p>
    </body>
</html>

相關文章
相關標籤/搜索