我正在使用ckeditor,并通过使用<p>
来换行。
但是我想使用引导程序输出到html。它在图像上没有换行。
然后我尝试使用<br>
,ckeditor用<p>
替换了它。
如何为<p>
标签中的图像编写CSS以使其换行?
答案 0 :(得分:0)
运行此代码片段,并查看结果,希望对您的问题有所帮助。
img{
display:block;
}
<p>this is some text here<img src="#" alt="myimage">
</p>
答案 1 :(得分:0)
.block {
padding-top: 20px;
display: block;
}
p {
font-size: 16px;
}
<div class="block">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,</p>
<img src="https://image.ibb.co/k18JpK/images_20.jpg">
</div>
请检查上面的代码,如果您采用block属性,则其为块形式,否则您必须在HTML中使用此
标记来换行。