[ CSS ] 브라우저 스크롤바 제거 /* Hide scrollbar for Chrome, Safari and Opera */ .example::-webkit-scrollbar { display: none; } /* Hide scrollbar for IE, Edge and Firefox */ .example { -ms-overflow-style: none; /* IE and Edge */ scrollbar-width: none; /* Firefox */ } FE/CSS HEON.D 2021.02.03
[ CSS ] 너비에 패딩값 포함 CSS does the width include the padding? .box { box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; } stackoverflow.com/questions/4698054/css-does-the-width-include-the-padding FE/CSS HEON.D 2021.01.25
[ CSS ] Placeholder input::-webkit-input-placeholder { font-size: 90%; } input::-moz-placeholder { font-size: 90%; } input:-ms-input-placeholder { font-size: 90%; } input:-moz-placeholder { font-size: 90%; } input::placeholder { font-size: 90%; } FE/CSS HEON.D 2021.01.22
[ CSS ] 줄바꿈 (개행문자) 표시 방법 방법 You can use CSS white-space property for \n. You can also preserve the tabs as in \t. For line break \n: white-space: pre-line; For line break \n and tabs \t: white-space: pre-wrap; 링크 stackoverflow.com/questions/39325414/line-break-in-html-with-n/45178556 FE/CSS HEON.D 2021.01.19