CSS(2)
-
VS CODE ; Emmet CSS 자동완성 공백, 띄어쓰기 설정
VS CODE로 CSS 작성하면 위의 이미지 처럼 (:) 다음에 공백(띄어쓰기)이 생긴다. 나는 이게 무지 불편하다. 그래서 찾고 찾아서 해결 방안을 찾았다 VS CODE에서 "Ctrl + Shift + p"를 누르고 "settings.json"을 입력하면 json 파일이 열린다 위의 이미지 처럼 코드 추가 하고 저장하면 CSS 작성할 때 공백(띄어쓰기)가 없어진다. 기분이 쾌적해진다. "emmet.preferences": {"css.valueSeparator": ":", "css.propertyEnd": ";"},
2019.11.04 -
font, text ; 폰트와 텍스트
FONT 속성 Property Description CSS font Sets all the font properties in one declaration 1 font-family Specifies the font family for text 1 font-size Specifies the font size of text 1 font-style Specifies the font style for text 1 font-variant Specifies whether or not a text should be displayed in a small-caps font 1 font-weight Specifies the weight of a font 1 @font-face A rule that allows website..
2019.09.16