컴퓨터/목차 모음

HTML/CSS 목차

수제녹차 2020. 9. 7. 22:51
728x90
반응형

* markup이란
문서의 내용이 아니라 내용이 어떻게 배치되고 어떤 크기와 모양을 가지며
여백은 어느 정도인지 표현하는 기술

* html 기본 : ksj12172.tistory.com/1063

* span tag : white-space:break-spaces 속성 넣으면 '\n'(줄바꿈 entity) 있을 때 줄바꿈 된당

* 문자 속성(character entity) : ksj12172.tistory.com/874

* form : ksj12172.tistory.com/808

* input tag: ksj12172.tistory.com/299

* img tag: ksj12172.tistory.com/727

* a tag : ksj12172.tistory.com/477

* tabIndex : ksj12172.tistory.com/759

 

[ css ]

css-tricks.com/

* css position : ksj12172.tistory.com/25

* display_flex : ksj12172.tistory.com/92

* border-bottom 일부 길이에만 주는 법 : ksj12172.tistory.com/521

* 화면에 꽉 차게 만들기 : top, left, right, bottom을 모두 0으로 만든다

* overriding the default text selection color 

::selection {
  background: #ffb7b7; /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: #ffb7b7; /* Gecko Browsers */
}

* transition : ksj12172.tistory.com/1056

반응형