• 10-03-2020, 19:39:53
    #10
    Üyeliği durduruldu
    brkctk adlı üyeden alıntı: mesajı görüntüle
    Hocam arkadaş kutu içine almak istemiyor scroll barlı bir box icine almak istiyor 😊
    kankam zaten bir sürü çıkıyor inceleyip aklına yatan scroll barlısını alabilir
  • 10-03-2020, 19:41:19
    #11
    BunyMedia adlı üyeden alıntı: mesajı görüntüle
    kankam zaten bir sürü çıkıyor inceleyip aklına yatan scroll barlısını alabilir
    O şekilde de olabilir ama kod bilgisi çok olmadığı için textarea ile kolayca çözebilir diye düşündüm ben 😊 ama bu da bir yöntem hocam doğru



    Ayrıca areayi disabled yaparsan düzenleme alanı kapanır okumaya yönelik olur
  • 10-03-2020, 19:44:19
    #12
    Sizin dediğiniz kod yapısına Acordion deniliyor.
    Bir yazılımcı dan destek alabilirsiniz.
  • 10-03-2020, 19:47:26
    #13
    https://www.w3docs.com/tools/code-editor/5087





    <!DOCTYPE html>
    <html>
    <head>
    <title>Title of the document</title>
    <style>
    .element, .outer {
    width: 300px;
    height: 300px;}
    
    .outer {
    border: 2px solid #666666;
    position: relative;
    overflow: hidden;}
    
    .inner {
    position: absolute;
    left: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    }
    .inner::-webkit-scrollbar {
    display: none;}
    
    .inner {
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none; }
    
    </style>
    </head>
    <body>
    <div class="outer">
    <div class="inner">
    <div class="element">
    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
    </div>
    </div>
    </div>
    </body>
    </html>