스펀지 패드 디자인 시position 지정 방법
1127 단어 CSS
지정 방법
left, right 값을 각각 내용 영역(부모 요소)의 백분율로 지정하면 하위 요소는 부모 요소의 너비에 따라 달라집니다.
top,bottom을 적당히 지정하세요.
또한 이미지의 경우 "Flid Image"를 잊지 마십시오.
예제
대체로 다음과 같다.
■ 설계
※ 콘텐츠 영역 640px 시 디자인
■태그
HTML
<div class="contentsArea">
<div class="circle"><img src="circle.png" alt=""></div>
<div class="rect"><img src="rect.png" alt=""></div>
</div>
※ 원형은 클래스circle, 직사각형은 클래스rectcss
.contentsArea {
position: relative;
}
.contentsArea .circle,
.contentsArea .rect {
position: absolute;
}
.contentsArea .circle {
top: 20%;
left: 15.625%;
right: 62.5%;
}
.contentsArea .rect {
top: 70.25%;
left: 37.5%;
right: 15.625%;
}
.contentsArea img{
max-width: 100%;
}
Reference
이 문제에 관하여(스펀지 패드 디자인 시position 지정 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/lab3-34/items/c8a2b3191bd3a8f0d90b텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)