Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS로 이미지를 중앙에 맞추는 방법은 무엇입니까?


다음은 CSS로 이미지를 가운데에 맞추는 코드입니다 -

예시

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
img {
   display: block;
   margin-left: auto;
   margin-right: auto;
   width: 50%;
}
</style>
</head>
<body>
<h1 style="text-align: center;">Example of centering an image</h1>
<img src="https://images.pexels.com/photos/34950/pexels-photo.jpg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940">
</body>
</html>

출력

위의 코드는 다음과 같은 출력을 생성합니다 -

CSS로 이미지를 중앙에 맞추는 방법은 무엇입니까?