Responsive Textarea

 



การสร้าง Textarea ปรับขนาดอัตโนมัติ   คุณต้องสร้างไฟล์สองไฟล์  HTML และ CSS หลังจากสร้างไฟล์เหล่านี้แล้ว ให้วางโค้ดต่อไปนี้ลงในไฟล์ของคุณ


CSS

สร้างไฟล์ CSS ด้วยชื่อ style.css และวางรหัสที่กำหนดลงในไฟล์ CSS ของคุณ โปรดจำไว้ว่า คุณต้องสร้างไฟล์ที่มีนามสกุล .css


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(#4671EA, #AC34E7);
}
::selection{
  color: #fff;
  background: #4671EA;
}
.wrapper{
  width: 470px;
  background: #fff;
  border-radius: 5px;
  padding: 25px 25px 30px;
  box-shadow: 8px 8px 10px rgba(0,0,0,0.06);
}
.wrapper h2{
  color: #4671EA;
  font-size: 28px;
  text-align: center;
}
.wrapper textarea{
  width: 100%;
  resize: none;
  height: 59px;
  outline: none;
  padding: 15px;
  font-size: 16px;
  margin-top: 20px;
  border-radius: 5px;
  max-height: 330px;
  caret-color: #4671EA;
  border: 1px solid #bfbfbf;
}
textarea::placeholder{
  color: #b3b3b3;
}
textarea:is(:focus, :valid){
  padding: 14px;
  border: 2px solid #4671EA;
}
textarea::-webkit-scrollbar{
  width: 0px;
}


HTML

สร้างไฟล์ HTML ชื่อ index.html และวางโค้ดที่กำหนดลงในไฟล์ HTML ของคุณ โปรดจำไว้ว่า คุณต้องสร้างไฟล์ที่มีนามสกุล .html


<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Auto Resize Textarea | CodingNepal</title>
    <link rel="stylesheet" href="style.css">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
  </head>
  <body>
    <div class="wrapper">
      <h2>Auto Resize Textarea 1</h2>
      <textarea name="note1" spellcheck="false" placeholder="Type something here..." required></textarea>
   
      <h2>Auto Resize Textarea 2</h2>
      <textarea name="note2" spellcheck="false" placeholder="Type something here..." required></textarea>
    </div>


    <script>
      const textarea = document.querySelectorAll("textarea");
      textarea.forEach(function(item) {
      item.addEventListener("input", e =>{
        item.style.height = "63px";
        let scHeight = e.target.scrollHeight;
        item.style.height = `${scHeight}px`;
      });
      })
    </script>
  </body>
</html>

เพียงเท่านี้ คุณได้ Textarea ปรับขนาดอัตโนมัติ โดยใช้ HTML CSS และ JavaScript สำเร็จแล้ว  ขอให้สนุกกับการสร้างผลงานนะครับ


Ref. Auto Resize Textarea in HTML CSS & JavaScript (codingnepalweb.com)
แสดงความคิดเห็น (0)
ใหม่กว่า เก่ากว่า