CSS 강제 이미지 크기 조정 및 가로 세로 비율 유지
페이지 정보
작성자 최고관리자 댓글 0건 조회 4,798회 작성일 20-06-23 16:38본문
CSS 강제 이미지 크기 조정 및 가로 세로 비율 유지
<style>
/* This style sets the width of all images to 100%: */
img {
display: block;
max-width: 100%;
max-height: 100%;
width: auto;
height: auto;
display: block;
margin-left: auto;
margin-right: auto;
}
</style>
<style>
/* This style sets the width of all images to 100%: */
img {
display: block;
max-width: 100%;
max-height: 100%;
width: auto;
height: auto;
display: block;
margin-left: auto;
margin-right: auto;
}
</style>
추천232
관련링크
댓글목록
등록된 댓글이 없습니다.