일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- MSSQL
- execution plan
- slow in the application
- async await
- 느린 저장프로시저
- english
- 쿼리 최적화
- task
- identityserver3
- IdentityServer4
- 저장프로시저
- C#
- async
- SQLServer
- esl
- 영어공부
- query
- ThreadPool
- Dataannotation
- fast in ssms
- TPL
- validation
- await
- 실행계획 원리
- .net
- oauth2
- SSMS
- SQL Server Optimizer
- stored procedure
- identityserver
- Today
- Total
shyaway
Flexibility 본문
Flexibility Plugin
Web UI 개발하다보면 CSS3 Flex 속성이 얼마나 유용한지 체감할 수 밖에 없다. 세로 중앙 정렬같은 경우나, 컨텐츠 자동 상/하/좌/우 중앙 정렬 처리할 때 일반적인 속성으로는 처리하기 힘들기 때문이다. 여러가지 편법을 사용해야 한다. 특히 사이즈가 컨텐츠에 따라 유동적일 경우 여러가지 기묘한 방법을 써야만한다. flex 박스 content-adjust 와 align-items 속성만 지정하면 간단한 것을.... 그렇다고 고작 그러한 처리를 위해 스크립트를 짜서 따로 영역 계산해주기도 번거롭고..... 무엇보다 볼품없다.
그렇지만 아직도 IE10 이하 버전 사용자가 많은 상태에서 Flex 속성을 고집하면 아무래도 좀 아쉬운 감이 있다 ( 혹은 그래선 안된다 ). 그러다가 오늘 발견한 유용한 플러그인이 하나 있는데....
Flexibility !!
- 스크립트 로딩
<script src="flexibility.js"></script>
- CSS
.container { -js-display: flex; display: flex; }
.centering { position: absolute; top: 50%; left: 50%; margin: (- height half ) 0 0 ( - width laf );
}
이런 짓을 해야된다. 이건 다행히 컨테이너 크기가 Fix 되어 있을 경우고... 그렇지 않은 경우에는
.centering { position: absolute; top: 50%;
left: 50%; transform: translate(-50% -50%);
}
이런 짓을 해야 된다.... 이건 뭐 그냥 아무 생각없이 보면 "저 속성 왜 썼어??" 라는 생각만들 뿐이다. 말 그대로 트릭이다...
.centering {
content-adjust: center; align-items: center; }
정말 훌륭하다... 가독성과 의미 그대로의 레이아웃 구현... 너무 좋다... Flexibility 덕분에 한층 CSS 노가다가 편해졌다...
만들어주신 분들 감사합니다.
Flexibility Plugin
You are going to realize soon how good CSS3's flex attribute is when you develop a web UI. Vertical or automatic centering will give you some hard time when you just can't use the CSS3 property. You have to come up with some workarounds to do that, especially when the container doesn't have a fixed size. If you could use the flex, it can be done with just 'content-adjust' and 'align-items'. It's as simple as that! You don't want to tweak some script codes to calculate the dimension because... that literally... sucks.
But there are a lot of users who are still using IE below 10 ver. Using the flex attributes ignoring those people will probably bother you much, and you shouldn't IMHO. Anyway... One thing right to another... I accidentally bumped into this useful plugin today and the name is....
Flexibility !!
Loading the script
<script src="flexibility.js"></script>
Declaring CSS like this
.container { -js-display: flex; display: flex; }
.centering { position: absolute; top: 50%; left: 50%; margin: (- height half ) 0 0 ( - width laf );
}
This is how you can achieve the vertical & horizontal centered layout. This will only work if the container has a fixed width and height. Otherwise...
.centering { position: absolute; top: 50%;
left: 50%; transform: translate(-50% -50%);
}
You have to do something like this. If you don't know how this code works, you would think that "what the hell transform and translate are for?" Yeah... It's just a smart trick. The attributes weren't born for centering an element !!
.centering {
content-adjust: center; align-items: center; }
Look how simple it is... it's very readable and literally ' center '. It just made my CSS life easier, much much easier !!
I want to say thanks a million to those guys who made this plugin.
'HTML&CSS' 카테고리의 다른 글
Fast HTML markup with Emmet in VisualStudio (0) | 2017.12.27 |
---|