"HTML div에 스크롤바 붙이기"의 두 판 사이의 차이

(새 문서: ;HTML div에 스크롤바 붙이기 ==예시== *예제: http://zetawiki.com/ex/html/div-scroll.html <source lang='html5'> <style> div { width: 100px; height: 100px; margin: 5px...)
 
2번째 줄: 2번째 줄:


==예시==
==예시==
*예제: http://zetawiki.com/ex/html/div-scroll.html
*예제: http://zetawiki.com/ex/html5/div-scroll.html
<source lang='html5'>
<source lang='html5'>
<style>
<style>

2015년 7월 23일 (목) 14:38 판

HTML div에 스크롤바 붙이기

1 예시

<style>
div {
  width: 100px;
  height: 100px;
  margin: 5px;
  background-color: silver;
  float: left;
}
.box1 { overflow: scroll; }
.box2 { overflow: auto; }
</style>
<div class='box1'>(scroll)<br>
우리나라의 말이 중국과 달라 문자가 서로 통하지 않는데 이런 이유로 어리석은 백성이 말하고자 하는 바가 있어도 마침내 제 뜻을 능히 펴지 못하는 사람이 많으니라.
</div>
<div class='box2'>(auto)<br>
우리나라의 말이 중국과 달라 문자가 서로 통하지 않는데 이런 이유로 어리석은 백성이 말하고자 하는 바가 있어도 마침내 제 뜻을 능히 펴지 못하는 사람이 많으니라.
</div>

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}