Open In App

SVG height Attribute

The height attribute defines the vertical length of an element.

Syntax:



height= "height"

Attribute Values:

We will use the height attribute for setting the height of the element.



Example 1: In this example, we will use the height attribute for setting the height of rect using length value.




<!DOCTYPE html>
<html>
  
<body>
    <svg viewBox="0 0 3000 1000" 
        xmlns="http://www.w3.org/2000/svg">
          
        <rect y="150" x="150" 
            width="50" height="60" />
          
        <rect y="300" x="150" 
            width="50" height="60" />
    </svg>
</body>
  
</html>

Output:

Example 2: In this example we will use the height attribute for setting the height of rect using percentage value.




<!DOCTYPE html>
<html>
  
<body>
    <svg viewBox="0 0 3000 1000" 
        xmlns="http://www.w3.org/2000/svg">
          
        <rect y="150" x="75" 
            width="12%" height="10%" />
          
        <rect y="300" x="75" 
            width="12%" height="10%" />
    </svg>
</body>
  
</html>

Output


Article Tags :