body css /* content만 주면 위아래 공간이 생겨서 body와 html에 margin0주기 */ html, body { margin: 0; padding: 0; width: 100%; height: 100%; } /* 배경색주기 */ .content{ width: 100%; height: 1000px; background-color: aliceblue; } .progressbar{ position: fixed; height: 10px; top:6px; right:0; width: 100%; /* 맨앞으로 */ z-index: 500; } .progressbar > .progress{ background-color:yellowgreen; width: 0%;/* 프로그래스바 진행정도 */ hei..