我正试图将图像并排放在一些文本中。我几乎做到了,但列表有一个小问题:
段落没有问题,但列表会向左侧推动一下,位于图像下方。我尝试了几件事,但无法解决问题:/
以下是我正在使用的代码:
<div class="col-xs-8 pull-right">
<img class="pull-left" style="margin:0px 10px 10px 0px;width:60%;height:220px;" src="http://kkop.files.wordpress.com/2010/01/usapolice.jpg"/>
<div class="article-text">content here</div>
</div>
答案 0 :(得分:1)
(在问题编辑中由OP回答。转换为社区维基答案。请参阅Question with no answers, but issue solved in the comments (or extended in chat))
OP写道:由于没有人帮助我,我一直在寻找并找到解决方案。
对于遇到同样问题的每个人,请将其添加到
css
:
ol{
padding:0;
list-style-position:inside;
}
问题解决了! ;)