Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用Contentful来存储文章的内容并使用React markdown进行解析,并且效果很好。但是我不知道在对齐图像(例如并排的两个图像)时该怎么办。
有没有办法在降价中查看渲染了多少张图片?然后我可以根据降价中有多少图像进行对齐
您可以在降价中插入一些 HTML(这不是理想的解决方案),就像<img='img' class='align-left' />您也可以有一个单独的资产列表类型字段,您可以单独获取这些图像并将它们添加到您的 HTML
<img='img' class='align-left' />
您可以使用 next-sibling 选择器设置图像样式。
也许是这样的:
img + img { /* styles for any image directly after another image */ }