1. 터미널에서 npm 으로  node-sass 설치

npm install node-sass –g

 

 

 

2. 웹스톰에서 node-sass 설정

1) Program

C:\Users\DF-125_USER\AppData\Roaming\npm\node-sass

 

2) Arguments

--source-map true --output-style compressed $FilePathRelativeToProjectRoot$ $FileParentDir$/css/$FileNameWithoutExtension$.css

 

3) Output paths to refresh

$FileParentDir$/css/$FileNameWithoutExtension$.css:$FileParentDir$/css/$FileNameWithoutExtension$.css.map

 

4)  Working directory
$ProjectFileDir$

 

Posted by august5pm
,

모바일에서 a태그 터치영역 안보이게 처리하는 방법.


a {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent; /* For some Androids */
}

'프로그래밍 > css' 카테고리의 다른 글

[sass] 웹스톰에서 node-sass 설정 해주기  (0) 2019.08.23
Posted by august5pm
,