我有一个段落,我使用引用图像作为背景和<p>
标签中的大量文本。我正在尝试在标签之前显示一个图像,所有文本都与图像右侧对齐,<p>
但图像似乎显示在其中,这是我不想要的。我创建了一个小提琴以使其更容易看到:JSFiddle
这是我的CSS:
.container_12 {
margin-left: auto;
margin-right: auto;
width: 960px;
}
.blockquote {
font-size: 14px;
font-family: 'Times', serif;
font-style: italic;
color: #222222;
background-color: #f7f7f7;
background-image: url(http://somesite/Icon_Quote.png);
background-position: left top;
background-repeat: no-repeat;
min-height: 40px;
padding: 10px;
margin-bottom: 10px;
}
.QuoteTextToLeft {
float: left;
margin: 50px 10px 10px 10px;
}
和 HTML:
<div class="container_12">
<div>
<img class="QuoteTextToLeft" src="http://someothersite/man.png"
alt="" width="200" height="250" />
<a id="andrew_reeder"></a>
<p class="blockquote">START HERE - this is a test, ... (snipped)
<br />
<br />this is a test, a test of the emergency broadcast system....
<br />
<br />this is a test, a test of the emergency broadcast system....
<br />
<br />this is a test, a test of the emergency broadcast system....
<br />
<br />Someone who cares
<br />
<br />Some title</p>
</div>
我想要做的是将图像显示在<p class="blockquote">
标签之外,以便将引用图像定位在它说“从这里开始”的位置。
这是它目前的样子:
这就是我想要的样子: