HTML:헤더, 네비게이터
둘러보기로 이동
검색으로 이동
틀:HTML HTML에 대한 문서들 모음집
개요[편집 | 원본 편집]
페이지의 가장 윗 부분. 전체 디스플레이를 결정하는 부분.
header[편집 | 원본 편집]
css작성[편집 | 원본 편집]
#header{
width:100vw;
background-color: 색;
position: fixed;
left:0;
top:0;
}
/*헤더 안의 요소에 적용하기 위한 것.*/
#header .inner{
width:넓이;
height: 높이;
background: orange;
margin: 0 auto;
}
html작성[편집 | 원본 편집]