5일차_미니홈피 기본 레이아웃 만들기
body{ background-color:rgb(152, 151, 151); background-image: url(뼈대패턴.png); background-size: 100px; position: fixed; left: 0; top: 0; right: 0; bottom: 0; } /**position 속성값 static(포지션 기본값), relative, absolute, fixed 순으로 상대적으로 레이아웃박스의 위치를 잡을 수있는거같다. **/ .bookcover{ background-color:rgb(112, 172, 166); border-radius: 9px; border: 1px solid gray; width: 960px; height: 660px; margin: 100px auto; pos..