我正在尝试设置从纯文本生成的文本的样式,然后通过markdown将其转换为HTML
我们的想法是获得一个段落,然后是一张居中的照片(替代文字为脚注),然后是下一段。
我从我的页面获得的HTML看起来像这样:
<article class="news_item">
<header><a href="#">Hola</a><span><time datetime="2013-01-24" pubdate>24-01-2013</time></span></header>
<p>Lorem ipsum dolor pscing elitr, sed diam nonumy eirmod </p>
<p><img alt="Alt text" src="bla/bla/bla.png"/></p>
<p>labore et dolore magna aliquyam erat, </p>
</article>
,造型为:
.news_item {
clear: left;
text-align: justify;
max-width:600px;
}
.news_item header{
font-size: 16px;
font-weight: bold;
}
.news_item time{
font-size: 12px;
position:relative;
float: right;
}
.news_item img {
max-width: 390px;
float: center;
position: relative;
clear: both;
margin-left:auto;
margin-right:auto;
}
.news_item p img {
max-width: 390px;
padding: 5px;
float: center;
position: relative;
clear: both;
margin-left:auto;
margin-right:auto;
}
.news_item p {
width: 600px;
text-align: justify;
}
无论我做什么,图像永远不会在文章中居中。我想这与降价有关,在图像周围放置<p></p>
,但我不知道如何处理。
任何人都可以帮助我?
答案 0 :(得分:1)