Open In App

Tachyons Element Images

Last Updated : 03 Jun, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

Tachyons Element Images is used to fix an image’s width so the image can not stretch. We can insert an image through an image tag. The image tag has the following class which is used to enhance the image.

Syntax: 

<img src=" " 
     class="Tachyons Layout Widths Classes" 
     alt=" ">

Tachyons Element Images Classes: There are no predefined classes that tachyons provide for this, we need to use width the lass to fix the width of the uploaded images.

To achieve the Tachyons Images element feature we need to use the below-mentioned element’s classes.

Below examples illustrate the Tachyons Element Images:

Example 1: In the below code we will insert an image using the Tachyons toolkit.

HTML




<!DOCTYPE html>
<html lang="en">
  
<head>
    <link rel="stylesheet" 
          href=
  
    <style>
        div {
            text-align: center;
        }
    </style>
  
</head>
  
<body>
    <h2 style="color:green;
               text-align:center;">
      GeeksforGeeks
    </h2>
    <h3 style="text-align:center;">
      Tachyons Element Images
    </h3>
    <div>
        <img src=
             class="w-50" 
             alt="GFG">
    </div>
</body>
</html>


Output:

Tachyons Element Images

Tachyons Element Images

Example 2: In the below code we will insert an image using the Tachyons toolkit.

HTML




<!DOCTYPE html>
<html lang="en">
  
<head>
    <link rel="stylesheet"
          href=
  
    <style>
        body {
            background-color: lightgrey;
        }
  
        div {
            text-align: center;
        }
    </style>
</head>
  
<body>
    <h2 style="color:green; text-align:center;">
      GeeksforGeeks Logo
    </h2>
    <h3 style="text-align:center;">
      Tachyons Element Images
    </h3>
    <div>
        <img src=
             class="w-50"
             alt="GFG">
        <img src=
             class="w-100"
             alt="GFG">
    </div>
</body>
</html>


Output:

Tachyons Element Images

Tachyons Element Images

Reference: https://tachyons.io/docs/elements/images/



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads