본문 바로가기

개발하자/자바스크립트

css명령어 overflow : scroll | hidden | auto | visible

# css명령어 overflow : scroll | hidden | auto | visible

[ex]
<html>
 <head>
 <style type="text/css">
  div {
   background:skyblue;
   width:50px; height:200px;
   /*overflow:scroll;*/
   /*overflow:hidden;*/
   /*overflow:auto;*/
   /*overflow:visible;*/
  }
 </style>
 </head>
 <body>
 <div>
 <script>
 for(a=0;a<20;a++){
  document.write("fdjksaljfs;ajfs;ajfkja;sf<br>");
 }
 </script>
 </div> 
 </body>
</html>