기본 콘텐츠로 건너뛰기

user agent stylesheet (margin 8px default )


<Body> 태그에서 margin 8px 디폴트로 적용되어 있는 경우가 있다.
해당 스타일을 제거하려면 아래 코드를 css 재정의하면 된다.


[userstylesheet.css] add this code


* {
    margin: 0;
    padding: 0;
}

댓글

이 블로그의 인기 게시물

div 양분하기 (Two Column Layout)

float:left를 활용한 div 둘로 나누기 [html]     <div class="content_wrap">            <div class="content-list">List</div>            <div class="content-view">View</div>      </div> [css] .content_wrap {     position:relative;     width:100%; } .content-list {     width: 40%;     height:500px;     float:left;     background-color:yellow } .content-view {     width: 60%;     height: 500px;     float: left;     background-color: beige }