그누보드 height auto
본문
안녕하세요 다들 바쁜 하루 보내시고 계신가요 ?
다름이 아니라 그누보드 index 레이아웃을 짜고 있는데 갑자기 width스크롤바가 생겨서 의아하던 찰나에
이것저것 건드려보니 #container에 있는 height:auto !important때문인걸 발견했네요 ..
혹시 이 scrollbar를 아예 없앨수 있는 방법이 있을까요 ?
#container {position:relative;float:left;min-height:700px;margin:0px 0px 10px 0px;height:500px;font-size:1em;width:930px;zoom:1; min-width:100%;
height:auto !important }
답변 3
스크롤이생긴다는건 안에 레이어가 해당레이어를 감싸는 밖 레이어보다 넓이가 크다는거겟죠
height 는 상관없고
width , min-width 를 수정하거나
밖 레이어에서 overflow hidden 으로 변경해보면 될듯
width, height 늘리거나, overflow:hidden 넣으시면 될 듯.
#container {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
#container::-webkit-scrollbar {
display: none; /* Chrome, Safari, Opera*/
}
답변을 작성하시기 전에 로그인 해주세요.