-
<input type="text" placeholder="ID"> <input type="password" placeholder="password"> <button>Login</button> <label> <input type="checkbox">Keep Login </label> <link rel="stylesheet" href="style.css">
id password 로그인
body { margin: 0; padding: 0; background: #fff; color: #4a4a4a; } header, footer { font-size: large; text-align: center; padding: 0.3em 0; background-color: #4a4a4a; color: #f9f9f9; } nav { background: #eee; } main { background: #f9f9f9; } aside { background: #eee; }
index.css
<link rel="stylesheet" href="index.css" /> <link rel="stylesheet" href="layout.css" />
새로운 link 요소 추가
body { min-height: 100vh; display: flex; flex-direction: column; } .container { display: flex; flex: 1; } main { flex: 1; padding: 0 20px; } nav { flex: 0 0 180px; padding: 0 10px; } aside { flex: 0 0 130px; padding: 0 10px; }
layout.css
'코드스테이츠' 카테고리의 다른 글
재귀 (1) 2023.04.11 4.3 part1 (0) 2023.04.04 3.3 JavaScript 클로저 (0) 2023.03.03 3.2 JavaScript 스코프 (0) 2023.03.02 3.2 section1 unit 9 원시 자료형과 참조 자료형 종합퀴즈 (0) 2023.03.02