get it on google playCreated with Sketch.
CSS> Height

Height

To change the height of an element, we use the height property.

 <head>
  <link rel="stylesheet" href="style.css">
 </head>
 <body>
  <h3>One theory of the Earth</h3>
  <img src="https://mimo.app/r/earth.png">  
 </body>
img {
 height: 100px;
}
TRY IT ON THE APP