반응형
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
- javascript
- Files
- Java
- 배열
- 이클립스
- 문자열
- js
- Button
- Array
- list
- vscode
- 이탈리아
- Visual Studio Code
- 테이블
- IntelliJ
- json
- windows
- ArrayList
- CMD
- table
- 자바스크립트
- CSS
- input
- Maven
- html
- date
- string
- 인텔리제이
- Eclipse
- 자바
Archives
- Today
- Total
어제 오늘 내일
[HTML/CSS] 버튼 왼쪽, 오른쪽, 가운데 정렬하기 본문
이번에는 버튼을
왼쪽, 오른쪽, 가운데 정렬하는 방법을 정리해 보았습니다.
1. text-align
<div class="left">
<button>왼쪽 정렬</button>
</div>
<div class="center">
<button>가운데 정렬</button>
</div>
<div class="right">
<button>오른쪽 정렬</button>
</div>
.left {
text-align: left;
}
.center {
text-align: center;
}
.right {
text-align: right;
}
버튼을 감싸고 있는 div 영역에
text-align 속성을 적용하여
그 안의 버튼을 정렬하였습니다.
2. flex
<div class="container left">
<button>왼쪽 정렬</button>
</div>
<div class="container center">
<button>가운데 정렬</button>
</div>
<div class="container right">
<button>오른쪽 정렬</button>
</div>
.container {
display: flex;
}
.left {
justify-content: flex-start;
}
.center {
justify-content: center;
}
.right {
justify-content: flex-end;
}
버튼을 감싸고 있는 div 컨테이너에
display: flex를 적용하고,
justify-content 속성을 적용하여 버튼을 정렬하였습니다.
반응형
'IT > HTML&CSS' 카테고리의 다른 글
[HTML/CSS] div 가로로 나란히 정렬하는 4가지 방법 (0) | 2024.01.18 |
---|---|
[HTML/CSS] 가로 세로 스크롤바 항상 보이게 설정하기 (0) | 2024.01.12 |
[HTML/CSS] 테이블의 홀수행/짝수행에 스타일 적용하기 (:nth-child, odd, even) (0) | 2023.12.15 |
[HTML/CSS] 짝수/홀수 선택자 (nth-child, odd, even) (0) | 2023.12.14 |
[HTML/CSS] 테이블에 마우스 오버 시 행(row) 배경색 변경 (0) | 2023.12.13 |
Comments