반응형
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 를 주면된다.
반응형
'HTML,CSS' 카테고리의 다른 글
HTML 띄어쓰기 (공백) 하는법 (0) | 2022.03.23 |
---|---|
폰트사이즈 조정, 텍스트 밑줄 없애기 (0) | 2022.03.18 |
Zoom in Zoom out animation (html,css,js and React) (0) | 2022.02.14 |
좌우 흔들리는 건배효과 (cheers!) (0) | 2022.02.14 |
div,hr 등 border속성 (0) | 2022.02.11 |