Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- vue.js
- Chart.js
- 개발콘텐츠
- 티스토리꾸미기
- CSS
- 리액트
- 커스텀
- TSDoc
- React.js
- 성능최적화
- react
- 2022
- 공통컴포넌트
- 폰트적용하기
- 반복줄이기
- click and drag
- typescript
- 타입스크립트
- javascript
- returnType
- 타입좁히기
- const 단언문
- 레이아웃쪼개기
- 누구나 자료구조와 알고리즘
- reactjs
- NonNullable
- JS console
- 제네릭
- utilty type
- React Native
Archives
- Today
- Total
몽땅뚝딱 개발자
[Sass] 공통 mixin 정리 본문
📄 _mixins.scss
◽ clear: both;
@mixin clearfix() {
&::after {
content: '';
display: block;
clear: both;
}
}
◽ 말줄임
@mixin Nellipsis ($lines: null) {
@if ($lines == null) {
overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap;
} @else {
display: block;
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
-webkit-line-clamp: $lines;
-webkit-box-orient: vertical;
}
}
◽ 줄바꿈 속성
@mixin wordWrap {
word-break:break-word;
word-wrap:break-word;
}
◽ 생략
@mixin ellipsis($line: 1) {
@if ($line == 1) {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
} @else {
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
-webkit-box-orient: vertical;
-webkit-line-clamp: $line;
}
}
출처
https://redbinalgorithm.tistory.com/641
https://gist.github.com/drifterz28/8450208
https://13akstjq.github.io/sass/2020/02/22/useful-sass-mixin.html
개인적으로 공부한 내용을 정리하는 블로그로
잘못된 개념을 게시하지않도록 주의하고 있으나 오류가 있을 수 있습니다.
'Development > HTML · CSS' 카테고리의 다른 글
[CSS] flex (0) | 2021.12.28 |
---|---|
[CSS] outline과 border의 차이 (0) | 2021.12.22 |
[HTML/CSS] reset.css (0) | 2021.12.08 |
[CSS] 다단 편집(Multiple Colume) (0) | 2021.12.07 |
[CSS] background-origin (0) | 2021.12.07 |
Comments