HTML 및 CSS에서 전화 모델 레이아웃을 만드는 방법

5989 단어 csstutorialhtmlwebdev
안녕하세요. Phone Model Layout에 대한 새로운 기사 🎉로 돌아온 것을 환영합니다. 이것은 재미있는 기사가 될 것입니다.

그럼 시작하겠습니다 🚀

한눈에




  • 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

    이 게시물이 마음에 드셨기를 바랍니다. 댓글 섹션에서 피드백을 공유하세요 🙂

    좋은 웹페이지 즐겨찾기