250x250
Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 주민번호 input
- 마이크로소프트 디자이너 컴팩트 키보드 마우스 세트
- placeholder-shown:
- focus-within
- input password 입력 바꾸기
- meta
- 오블완
- 한국방송통신대학교 졸업 후기
- 컴퓨터과학과 후기
- Attribute Selectors
- 특정도값
- input text javascript
- password input
- select placeholder
- a11y
- CSS
- image Filter
- 컴퓨터과학과 과목 후기
- input password javascript
- PlaceHolder
- input password 입력
- input text placeholder image
- 주민번호 css
- 마이크로소프트 디자이너 컴팩트 키보드
- 티스토리챌린지
- 컴퓨터과학과 교과목 후기
- microsoft designer compact keyboard & mouse
- sr-only
- microsoft designer compact keyboard
- 엣지 password 눈모양 제거
Archives
- Today
- Total
디자인과 개발 그 사이
자주쓰는 flex 사용예시 / 정중앙으로 배치 / 양쪽끝으로 배치 본문
728x90
1.정중앙으로 배치
html
<div class="wrap">
<div class="loginBox">
<h2>LOGIN</h2>
<ul>
<li>
<input type="text" placeholder="ID 입력하세요.">
</li>
<li>
<input type="password" placeholder="비밀번호를 입력하세요.">
</li>
<li>
<input type="submit" value="login">
</li>
</ul>
</div>
</div>
css
* {margin: 0; padding: 0; box-sizing: border-box;}
h2 {text-align: center; padding-bottom: 10px;}
li {list-style: none; padding: 5px 0;}
input {width: 100%; padding: 5px;}
.wrap {
width: 100%;
background-color: cadetblue;
/* 높이 값이 있어야 가운데 위치 가능 */
height: 100vh;
/* flex 가운데 중앙으로 배치 */
display: flex;
justify-content: center;
align-items: center;
}
.loginBox {width: 300px; padding: 30px; border: solid 1px #000; background-color: burlywood;}
/* flex 부모에 자식이 하나 있어야 정중앙 배치 가능 */
2.양쪽끝으로 배치
html
<div class="wrap">
<div class="topMeun">
<!-- 양쪽 정령할 자식요소 2개 필요
3개일경우 양쪽과 가운데로 정렬됨
3개이상일경우 전체 너비에 맞쳐 자동으로 같은 간격으로 정렬됨
-->
<div class="toggleMenu">
<img src="https://cdns.iconmonstr.com/wp-content/releases/preview/7.1.0/240/iconmonstr-line-three-horizontal-lined.png" width="35px">
</div>
<div class="login_group">
<span>admin 님</span>
<a href="#">로그아웃</a>
</div>
</div>
</div>
css
* {margin: 0; padding: 0; box-sizing: border-box;}
.wrap {width: 100%; height: 100vh; background-color: #000;}
.topMeun {
/* 양쪽 끝으로 정렬 */
display: flex;
align-items: center;
justify-content: space-between;
padding: 15px;
background-color: #fff;
}
728x90
'css' 카테고리의 다른 글
input 체크박스/라디오 스타일 커스텀 하기, 꾸미는 법 (0) | 2023.07.25 |
---|---|
inline / inline-block 자동생성되는 여백 조절! (0) | 2023.07.25 |
float 해지 방법 (0) | 2023.07.25 |
모바일 디바이스별 글자크기 다름 / text-size-adjust (0) | 2023.07.24 |
[오버스크롤 동작] ios 모바일 스크롤 바운스 막기 / 스크롤 체이닝 막기 (0) | 2023.07.24 |