Home > Software engineering >  How to add spacing to the image tag? [jQuery Terminal]
How to add spacing to the image tag? [jQuery Terminal]

Time:09-28

How can I add a spacing or tab character before an image? I am making a terminal that resembles/bears a similarity to the neofetch command, and I kinda want to imitate the color palette like this.

I have tried the following:

 [[@;;;;https://placekitten.com/300/300]
 [[@;;;;https://placekitten.com/300/300]
    [[@;;;;https://placekitten.com/300/300]
\t[[@;;;;https://placekitten.com/300/300]

All of the code above prints the image but it is on a new line, and there is no spacing added.

CodePudding user response:

If you want such big space on the left, the best way is to use CSS as with any layout changes.

Just add a class:

[[@;;;space-image;https://placekitten.com/300/300]

and use CSS:

.space-image {
   margin-left: 100px;
}
  • Related