Answers for "how to insert text in div tag"

14

js insert text into div

var div = document.getElementById('myElementID');
div.innerHTML += "Here is some more data appended";
Posted by: Guest on August-05-2019
1

how to write a text inside a div

<html>

<head>
  <style type="text/css">
    div {
      height: 100px;
      width: 100px;
      background: #ccc;
      text-align: center;
    }

    p {
      line-height: 100px;
    }

  </style>
</head>

<body>
  <div>
    <p>centered</p>
  </div>
</body>

</html>
Posted by: Guest on June-09-2021

Code answers related to "how to insert text in div tag"

Code answers related to "Javascript"

Browse Popular Code Answers by Language