w3.css 장치 모양 CSS를 사용하여 다양한 기기의 모양(스마트폰, 태블릿, 노트북)을 만드는 방법을 알아보자. 스마트폰 1단계) HTML 추가 <div class=”smartphone”> <div class=”content”> <iframe src=”/w3css/tryw3css_templates_band.htm” style=”width:100%;border:none;height:100%” /> </div> </div> 2단계) CSS 추가 /* The device with borders */ .smartphone { position: relative; width: 360px; height: 640px; margin: auto; border: 16px black solid; border-top-width: 60px; border-bottom-width: 60px; border-radius: 36px; } /* The horizontal line on the top of the device */ .smartphone:before { content: ”; display: block; width: 60px; height: 5px; position: absolute;…