목록전체 글 (72)
LogicalMaster

안녕하세요. 이번엔 PHP 을 이용하여 간단한 게시판을 한번 만들어 보겠습니다. - 필요 준비물 PHP, MySQL, NGiNX 서버, phpMyAdmin (DB 관리 툴), 비주얼코드 (Visual Code). 이렇게 되겠습니다. 바로 시작합시다. - 먼저 서버 설치 (xampp) 다운로드 공식 사이트 : www.apachefriends.org/index.html XAMPP Installers and Downloads for Apache Friends What is XAMPP? XAMPP is the most popular PHP development environment XAMPP is a completely free, easy to install Apache distribution containin..

뷰포트(Viewport)와 관련하여 레이아웃(배치)을 다루기 위한 float, clear 및 positon 속성 그리고 positon속성과 관련된 top, right, bottom, left, z-index 속성에 대해 알아보겠습니다. 대표적인 레이아웃 테크닉인 플로팅(Floating)과 포지셔닝(Positioning)을 알아보고, 모던 레이아웃인 플렉스박스(Flexbox)와 그리드(Grid) 레이아웃에 대해 알아보겠습니다. 먼저 플로팅 레이아웃에 대해 학습해 봅니다. - 일반적인 레이아웃 흐름(Normal Layout Flow) - 소스 html { font-size: 10px; } body { margin: 3rem; font: 1.4rem/1.5 Verdana, Arial, Sans-Serif; }..

- 소스 p { overflow : hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; border:1px solid red; margin:30px; font-size:20px; width:300px; } WebKit Browsers will clamp the number of lines in this paragraph to 2. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ..