我正在尝试设置从纯文本生成的文本的样式,然后通过降价将其转换为 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>
在图像周围放置 a ,但我不知道如何处理。
任何人都可以帮助我吗?