today I learned
1. p태그 안의 input
2. div태그에 image를 넣고 싶다면,
3. max-width로 모바일 처리
4. 가운데 정렬
1. p태그 안의 input
<p>ID: <input type="text"/></p>
2. div 태그에 image를 넣고 싶다면, 쓰이는 3종
background-image: url('http:// url주소);
background-position: center;
background-size: cover;
3. max-width로 모바일 처리
width: 95%;
max-width: 500px;
4. 가운데 정렬 : width 주기, margin: auto, display: block
width: 300px;
margin: 10px auto;
display: block
00. 느낀점
잘 알고 있다고 생각했는데, 아직도 부족한 점이 많다.
더 노력하고 공부해야겠다.