본문 바로가기
HTML,CSS

div element center align (div 중앙정렬)

by flykimjiwon 2022. 2. 14.
반응형

https://www.w3schools.com/css/css_align.asp

 

CSS Layout - Horizontal & Vertical Align

W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.

www.w3schools.com


참고한 사이트는 위와 같다.

 

.center {
  margin: auto;
  width: 50%;
  border: 3px solid green;
  padding: 10px;
}

속성을 가운데 적용하려면 위와같이 margin:auto

 

.center {
  text-align: center;
  border: 3px solid green;
}

글자,text를 가운데 적용하려면 위와같이 text-align:center 를 주면된다.

반응형