상세 컨텐츠

본문 제목

css 요소 가운데 정렬

스터디(코딩, 잡지식 등)

by 촘스키 2018. 12. 10. 20:27

본문

반응형

<!DOCTYPE html>

<html>

<head>

<style>

img {

  display: block;

  margin-left: auto;

  margin-right: auto;

}

</style>

</head>

<body>


<h2>Center an Image</h2>

<p>To center an image, set left and right margin to auto, and make it into a block element.</p>


<img src="paris.jpg" alt="Paris" style="width:40%">


</body>

</html>





<!DOCTYPE html>

<html>

<head>

<style>

.center {

  margin: auto;

  width: 60%;

  border: 3px solid #73AD21;

  padding: 10px;

}

</style>

</head>

<body>


<h2>Center Align Elements</h2>

<p>To horizontally center a block element (like div), use margin: auto;</p>


<div class="center">

  <p><b>Note: </b>Using margin:auto will not work in IE8, unless a !DOCTYPE is declared.</p>

</div>


</body>

</html>





반응형

관련글 더보기

댓글 영역