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 중국어 웹사이트의 기타 관련 기사를 참조하세요!