Computer >> Máy Tính >  >> Lập trình >> Javascript

Làm cách nào để thiết lập thụt lề của dòng văn bản đầu tiên với JavaScript?


Để đặt thụt lề, hãy sử dụng textIndent tài sản.

Ví dụ

Bạn có thể thử chạy mã sau để trả về thụt lề của dòng văn bản đầu tiên bằng JavaScript -

<!DOCTYPE html>
<html>
   <body>
      <div id = "myText">
         This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text.
      </div>
      <br>

      <button onclick = "display()">Set Text Indent</button>
      <script>
         function display() {
            document.getElementById("myText").style.textIndent = "50px";
         }
      </script>
   </body>
</html>