• 회원가입
  • 로그인
  • 구글아이디로 로그인

[css] CSS - 부모요소 안 자식요소 너비를 부모요소 밖으로 화면너비 100% 채우기. (= 부모이탈자식너비전체설정 = 가로전체 = 가로꽉차게 =화면꽉차게 = parent, child, width)

 

 

<style>

div {

  border:1px solid silver;

  width:50%;

  height:300px;

  margin:0 auto;

  position:relative;

  z-index:9998;

}


nav {

  border-bottom:1px solid red;

  line-height:40px;

  position:absolute;

  width: 100vw;

  margin-left: calc(-50vw + 50%);

  text-align:center;

}

</style>

 

<div>

  <nav>홈짱닷컴 Homzzang.com </nav>

</div>

 

결과보기

https://stackoverflow.com/questions/31391459

vw 단위 : IE9 이상 주요 최신브라우저 모두 지원.

calc() 함수 : IE8 이상 주요 최신브라우저 모두 지원.


분류 제목
box CSS - margin-inline 속성 - 인라인방향 양쪽 끝 바깥 여백 주기 (= margin-inlin…
scroll CSS - scroll-margin-right 속성 -
border CSS - border-block-start-width 속성 -
css CSS - rotate 속성 - 요소 회전 (= rotate속성 = 로테이트속성)
scroll CSS - scroll-margin-inline-end 속성 -
border CSS - border-inline-style 속성 -
scroll CSS - scroll-padding-left 속성 -
scroll CSS - scroll-margin-block-start 속성 -
border CSS - border-inline-color 속성 -
css CSS - break-before 속성 - 지정요소 앞에서 (페이지중단/컬럼중단/영역중단) 발생 여부 지정 …
border CSS - border-start-start-radius 속성 -
scroll CSS - scroll-margin-block-end 속성 -
border CSS - border-block-end-width 속성 - 블락방향 끝테두리 너비(=두께) 지정 (= bo…
css CSS - hyphens 속성 - 긴 텍스트 단어에서 하이픈 표시 방법 지정 (= hyphens속성 = 하이…
css CSS - offset-path 속성 -
css CSS - place-self 속성 - 그리드셀 내 개별 아이템 (수직/수평) 정렬 (= place-self…
border CSS - border-inline-start-width 속성 -
scroll CSS - scroll-snap-stop 속성 -
scroll CSS - scroll-snap-align 속성 -
border CSS - border-inline-start-color 속성 -
6/27
목록
찾아주셔서 감사합니다. Since 2012