如何为图片标签添加间距? [jQuery终端]
How to add spacing to the image tag? [jQuery Terminal]
如何在图片前添加空格或制表符?我正在制作一个 resembles/bears 类似于 neofetch 命令的终端,我有点想模仿调色板 like this。
我试过以下方法:
 [[@;;;;https://placekitten.com/300/300]
 [[@;;;;https://placekitten.com/300/300]
[[@;;;;https://placekitten.com/300/300]
\t[[@;;;;https://placekitten.com/300/300]
上面的所有代码都打印了图像,但它在一个新行上,并且没有添加间距。
如果您想要左侧这么大的 space,最好的方法是使用 CSS 和任何布局更改一样。
只需添加一个class:
[[@;;;space-image;https://placekitten.com/300/300]
并使用 CSS:
.space-image {
margin-left: 100px;
}
如何在图片前添加空格或制表符?我正在制作一个 resembles/bears 类似于 neofetch 命令的终端,我有点想模仿调色板 like this。
我试过以下方法:
 [[@;;;;https://placekitten.com/300/300]
 [[@;;;;https://placekitten.com/300/300]
[[@;;;;https://placekitten.com/300/300]
\t[[@;;;;https://placekitten.com/300/300]
上面的所有代码都打印了图像,但它在一个新行上,并且没有添加间距。
如果您想要左侧这么大的 space,最好的方法是使用 CSS 和任何布局更改一样。
只需添加一个class:
[[@;;;space-image;https://placekitten.com/300/300]
并使用 CSS:
.space-image {
margin-left: 100px;
}