HTML 및 CSS에서 전화 모델 레이아웃을 만드는 방법
그럼 시작하겠습니다 🚀
한눈에
index.html
<div class="container">
<div class="content">
<iframe src="https://snowbit.vercel.app" style="width:100%;border:none;height:100%" />
</div>
</div>
style.css
.container {
position: relative;
width: 360px;
height: 640px;
margin: auto;
border: 16px rgb(75, 75, 75) solid;
border-top-width: 60px;
border-bottom-width: 60px;
border-radius: 36px;
}
.container:before {
content: '';
display: block;
width: 60px;
height: 5px;
position: absolute;
top: -30px;
left: 50%;
transform: translate(-50%, -50%);
background: #333;
border-radius: 10px;
}
.container:after {
content: '';
display: block;
width: 35px;
height: 35px;
position: absolute;
left: 50%;
bottom: -65px;
transform: translate(-50%, -50%);
background: #333;
border-radius: 50%;
}
.container .content {
width: 360px;
height: 640px;
background: white;
}
이게 다야, 너무 간단하고 쉬웠어 🙂
라이브 데모 - https://snowbit-coderboi.github.io/Phone-View-Layout/
소스 코드 - https://github.com/snowbit-coderboi/Phone-View-Layout
이 게시물이 마음에 드셨기를 바랍니다. 댓글 섹션에서 피드백을 공유하세요 🙂
Reference
이 문제에 관하여(HTML 및 CSS에서 전화 모델 레이아웃을 만드는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/dhairyashah/how-to-create-a-phone-model-layout-in-html-and-css-24f0텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)