要在 WebStorm 中新建 CSS 檔案:開啟專案結構,在目標資料夾右鍵點擊「新建」>「CSS 檔案」。輸入檔案名稱,選擇預設範本、編碼,是否包含檔案標題,再按一下「建立」。
如何在WebStorm 中新建CSS 檔案
新CSS 檔案的步驟:
進階選項:
新建立的 CSS 檔案將如下所示:
<code class="css">/* * CSS Reset * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/) */ /* Box sizing rules */ *, *::before, *::after { box-sizing: border-box; } /* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */ ul[role="list"], ol[role="list"] { list-style: none; } /* Fix margins for blockquote elements in IE 11+ */ blockquote { margin: 0; } /* Normalize line height for headings 1 to 6 in Chrome, Firefox, and Safari */ h1, h2, h3, h4, h5, h6 { line-height: 1.2; } /* Remove all animations and transitions for people that prefer not to see them */ @media (prefers-reduced-motion: reduce) { * { animation-duration: 0ms !important; animation-iteration-count: 1 !important; transition-duration: 0ms !important; scroll-behavior: auto !important; } }</code>
您現在可以開始在 CSS 檔案中編寫樣式。
以上是webstorm怎麼新建css文件的詳細內容。更多資訊請關注PHP中文網其他相關文章!