gpt4 book ai didi

html - 如何在段落中内联

转载 作者:太空宇宙 更新时间:2023-11-04 06:39:53 24 4
gpt4 key购买 nike

我正在尝试使 SVG 标记函数内嵌在一个段落中。

标签在段落中按照我希望的方式运行,而 SVG 声明其自己的行。

发生这种情况:

我的文字在这里

[SVG图像]

我的文字继续在这里。

这就是我想要的:

我的文字在这里 [SVG 图像] 我的文字在这里继续。

这个 JSFiddle 显示了问题:https://jsfiddle.net/aorsten/pq6zsmh0/9/

<p class="text-justify">
I am writing a text here, and letting it go on for a few lines. <img src="https://i.postimg.cc/gncBZvLn/block2.png" alt="hi"> I am writing a text here, and letting it go on for a few lines. I am writing a text here, and letting it go on for a few lines.
I am writing a text here, and letting it go on for a few lines.
<a href="#">
<svg viewBox="0 0 314325 314325" preserveAspectRatio="xMidYMid meet" class="svg">
<g transform="translate(0 0)scale(0.16019417475728157 0.16019417475728157)rotate(0 157162.5 157162.5)translate(0 0)">
<g transform="translate(0 0)rotate(0 981075 981075)">
<image href="https://i.postimg.cc/hJmCBs63/groupgrid.png" width="1962150" height="1962150" preserveAspectRatio="none">
</image>
</g>
<g transform="translate(1133475 990600)rotate(0 73025 73025)">
<image href="https://i.postimg.cc/gncBZvLn/block2.png" width="146050" height="146050" preserveAspectRatio="none">
</image>
</g>
</g>
</svg>
</a> I am writing a text here, and letting it go on for a few lines. I am writing a text here, and letting it go on for a few lines. I am writing a text here, and letting it go on for a few lines.
</p>

.text-justify {
text-align: justify !important;
}

img {
max-height: 1.5em;
}

.svg {
max-height: 1.5em;
display: inline-block;
position: relative;
vertical-align: bottom;
}

最佳答案

对 SVG 使用 width 选项。

.svg {
width: 1.5em;
vertical-align: middle
}

关于html - 如何在段落中内联 <svg> ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53884069/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com