开发者

Indented blockquote around float

开发者 https://www.devze.com 2023-01-10 14:19 出处:网络
I have a blockquote tha开发者_运维技巧t flows around a left-floated image. How can I make the blockquote indented 2em from the left margin of the page when it is above or below the image but indented

I have a blockquote tha开发者_运维技巧t flows around a left-floated image. How can I make the blockquote indented 2em from the left margin of the page when it is above or below the image but indented 2em from the right side of the floated image when it is along the same line as the image? I am using HTML and CSS.


img{
float:left;
margin-right:1em;
...
}

blockquote{
position:relative;
left:1em;
margin-left:1em;
...
}

Normal text is 0em from the left margin of the page and 1em right from the image. Blockquote is 2em from the left margin of the page and 2em right form the image.


Oddly, display:table worked for me.

0

精彩评论

暂无评论...
验证码 换一张
取 消