Answers for "increase text width css"

CSS
7

css change text size

p {
	font-size: 150% /*px, cm, in, etc.*/; 
}
Posted by: Guest on May-14-2020
3

how to change text size in css

.class{
  	font-size: 100%;
}

.class{
  	font-size: 20em;
}

.class{
  	font-size: 20px;
}

.class{
  	font-size: 20pt:
}
Posted by: Guest on April-13-2021
0

how to stretch text in javascript

<!DOCTYPE html>
<html>
  <head>
    <title>Title of the document</title>
    <style>
      span.stretch {
        display: inline-block;
        margin: 35px;
        -webkit-transform: scale(2, 1);
        -moz-transform: scale(2, 1);
        -o-transform: scale(2, 1);
        transform: scale(2, 1);
      }
    </style>
  </head>
  <body>
    <p>This text is
      <span class="stretch">stretching</span>.
    </p>
  </body>
</html>
Posted by: Guest on July-31-2020

Browse Popular Code Answers by Language