일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- querydsl
- 테스트
- 컨테이너실행
- 메세지수정
- 2 > /dev/null
- AuthenticationEntryPoint
- WeNews
- 적용우선순위
- Query
- 포트
- ubuntu
- 네이티브쿼리
- docker명령어
- 서브쿼리
- 메소드명
- 검색
- appspec
- ㅔㄴ션
- MySQL
- 외부키
- 참조키
- 예약
- 추후정리
- EC2
- 테스트메소드
- appspec.yml
- subquery
- 커밋메세지수정
- foreignkey
- application.yml
Archives
- Today
- Total
제뉴어리의 모든것
div 영역 안에 div를 가로로 나열하여 배치하고 가운데 정렬하기 본문
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
#container {
background-color: gray;
width: 1000px;
height: 600px;
border: 2px solid blue;
margin: 0 auto; /* container 영역을 브라우저에서 가운데 정렬하기 위해 auto설정 */
text-align: center; /* inline-block화 된 div들을 텍스트 마냥 center로 정렬*/
}
#container div{
display: inline-block; /* 가로로 나열하기 위해 block레벨 요소를 inline-block레벨로 전환 */
width: 200px; /* 영역 크기 지정 안해주면 inline 레벨처럼 내용물 만큼만 차지하기 때문에 크기 지정 */
height: 200px; /* 영역 크기 지정 안해주면 inline 레벨처럼 내용물 만큼만 차지하기 때문에 크기 지정 */
border: 2px solid aqua;
background: orange;
}
</style>
<title>Document</title>
</head>
<body>
<div id="container">
<div>
첫번째
</div>
<div>
두번째
</div>
</div>
</body>
</html>
결과 화면
'css' 카테고리의 다른 글
float의 기본 개념 (0) | 2022.06.05 |
---|---|
[HTML&CSS] 블록 레벨, 인라인 레벨 요소 (Block Level Element, Inline Level Element) (0) | 2022.06.05 |
[CSS] display - block과 inline 그리고 inline-block (0) | 2022.06.04 |
특정위치 자식 요소 선택하기 first-child (0) | 2022.06.04 |
perspective 주의점. (0) | 2022.05.14 |