<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How To Put a Multi-Line Indent on a Styled Blockquote</title>
	<atom:link href="http://www.impressivewebs.com/how-to-put-a-multi-line-indent-on-a-styled-blockquote/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.impressivewebs.com/how-to-put-a-multi-line-indent-on-a-styled-blockquote/</link>
	<description>Web Design Articles &#38; Tutorials. To make the web impressive.</description>
	<lastBuildDate>Sun, 21 Mar 2010 17:00:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Best Photoshop, html, javascript and php tutorials &#187; How To Put A Multi-line Indent On A Styled Blackquote</title>
		<link>http://www.impressivewebs.com/how-to-put-a-multi-line-indent-on-a-styled-blockquote/comment-page-1/#comment-1450</link>
		<dc:creator>Best Photoshop, html, javascript and php tutorials &#187; How To Put A Multi-line Indent On A Styled Blackquote</dc:creator>
		<pubDate>Fri, 12 Mar 2010 21:38:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=453#comment-1450</guid>
		<description>[...] Click here for this Tutorial!     Previously Posted Tutorial: Create An Advanced CSS Menu Using The Hover &amp; Position Properties [...]</description>
		<content:encoded><![CDATA[<p>[...] Click here for this Tutorial!     Previously Posted Tutorial: Create An Advanced CSS Menu Using The Hover &amp; Position Properties [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The Right Way to Add Custom List Markers to Unordered Lists &#124; Impressive Webs Toronto</title>
		<link>http://www.impressivewebs.com/how-to-put-a-multi-line-indent-on-a-styled-blockquote/comment-page-1/#comment-1263</link>
		<dc:creator>The Right Way to Add Custom List Markers to Unordered Lists &#124; Impressive Webs Toronto</dc:creator>
		<pubDate>Sat, 13 Feb 2010 09:40:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=453#comment-1263</guid>
		<description>[...] All things considered, I think those drawbacks are small in comparison with the better looking list markers in this solution. You Might Also Like:How To Put a Multi-Line Indent on a Styled Blockquote [...]</description>
		<content:encoded><![CDATA[<p>[...] All things considered, I think those drawbacks are small in comparison with the better looking list markers in this solution. You Might Also Like:How To Put a Multi-Line Indent on a Styled Blockquote [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leon Amarant</title>
		<link>http://www.impressivewebs.com/how-to-put-a-multi-line-indent-on-a-styled-blockquote/comment-page-1/#comment-901</link>
		<dc:creator>Leon Amarant</dc:creator>
		<pubDate>Tue, 08 Dec 2009 14:48:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=453#comment-901</guid>
		<description>Nice and simple. You can also insert the  tag within every blockquote dynamically using jquery (or standard javascript for htat matter) in the onLoad event. This way, you would not require the programmer to add the  markup manually.</description>
		<content:encoded><![CDATA[<p>Nice and simple. You can also insert the  tag within every blockquote dynamically using jquery (or standard javascript for htat matter) in the onLoad event. This way, you would not require the programmer to add the  markup manually.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Impressive Webs</title>
		<link>http://www.impressivewebs.com/how-to-put-a-multi-line-indent-on-a-styled-blockquote/comment-page-1/#comment-756</link>
		<dc:creator>Impressive Webs</dc:creator>
		<pubDate>Fri, 09 Oct 2009 13:11:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=453#comment-756</guid>
		<description>John, that&#039;s a great tip. Definitely a example of practical use for generated content in CSS. Thanks!</description>
		<content:encoded><![CDATA[<p>John, that&#8217;s a great tip. Definitely a example of practical use for generated content in CSS. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John J.</title>
		<link>http://www.impressivewebs.com/how-to-put-a-multi-line-indent-on-a-styled-blockquote/comment-page-1/#comment-751</link>
		<dc:creator>John J.</dc:creator>
		<pubDate>Thu, 08 Oct 2009 13:34:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=453#comment-751</guid>
		<description>With CSS2 you can do this much easier entirely within CSS. All major browsers including Internet Explorer (IE) 8 now support the :before pseudo-class that makes this all possible.

  blockquote
  {
    border : 1px solid #dcdcdc;
    margin : 1em 40px;
    padding: 0 5px;
    background-color: #faf8e9;
  }
  blockquote:before {
    content:url(&#039;images/bg_blockquote.png&#039;);
    float:left;
    display:block;
    margin-right:5px;
    margin-top:3px;
  }</description>
		<content:encoded><![CDATA[<p>With CSS2 you can do this much easier entirely within CSS. All major browsers including Internet Explorer (IE) 8 now support the :before pseudo-class that makes this all possible.</p>
<p>  blockquote<br />
  {<br />
    border : 1px solid #dcdcdc;<br />
    margin : 1em 40px;<br />
    padding: 0 5px;<br />
    background-color: #faf8e9;<br />
  }<br />
  blockquote:before {<br />
    content:url(&#8216;images/bg_blockquote.png&#8217;);<br />
    float:left;<br />
    display:block;<br />
    margin-right:5px;<br />
    margin-top:3px;<br />
  }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gnossos</title>
		<link>http://www.impressivewebs.com/how-to-put-a-multi-line-indent-on-a-styled-blockquote/comment-page-1/#comment-724</link>
		<dc:creator>Gnossos</dc:creator>
		<pubDate>Tue, 15 Sep 2009 20:22:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=453#comment-724</guid>
		<description>I&#039;ve searched the web for the past hour looking for something like this. This is not quite what I need, but it comes closest.

I have a left-float image with text wrapped around it. In the text I have a blockquote, which I want to typeset in the traditional way. According to the Chicago Manual of Style, this is with left and right indentation, perhaps a smaller type, and space above and below. This is much less fancy than your usage, but in some ways harder to implement. The problem is that if the text wraps on the right of the left-floated image, relative indentation doesn&#039;t work with any of the standard html/css markup: blockquote, margin, padding, etc.

Your method works because by floating thin  left and right. The only problem is the heights of the  depend on how much text is in the block quote, and there is no general way to know this ahead of time.

Wouldn&#039;t it be nice to have a jQuery plugin that figures out the dimensions of the  and inserts them automatically before and after the blockquotes?</description>
		<content:encoded><![CDATA[<p>I&#8217;ve searched the web for the past hour looking for something like this. This is not quite what I need, but it comes closest.</p>
<p>I have a left-float image with text wrapped around it. In the text I have a blockquote, which I want to typeset in the traditional way. According to the Chicago Manual of Style, this is with left and right indentation, perhaps a smaller type, and space above and below. This is much less fancy than your usage, but in some ways harder to implement. The problem is that if the text wraps on the right of the left-floated image, relative indentation doesn&#8217;t work with any of the standard html/css markup: blockquote, margin, padding, etc.</p>
<p>Your method works because by floating thin  left and right. The only problem is the heights of the  depend on how much text is in the block quote, and there is no general way to know this ahead of time.</p>
<p>Wouldn&#8217;t it be nice to have a jQuery plugin that figures out the dimensions of the  and inserts them automatically before and after the blockquotes?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: #WDNDL For 5/31/2009 - Weekend Web Update! &#124; AndySowards.com :: Professional Web Design, Development, Programming, Hacks, Downloads, Math and being a Web 2.0 Hipster?</title>
		<link>http://www.impressivewebs.com/how-to-put-a-multi-line-indent-on-a-styled-blockquote/comment-page-1/#comment-380</link>
		<dc:creator>#WDNDL For 5/31/2009 - Weekend Web Update! &#124; AndySowards.com :: Professional Web Design, Development, Programming, Hacks, Downloads, Math and being a Web 2.0 Hipster?</dc:creator>
		<pubDate>Sun, 31 May 2009 14:14:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=453#comment-380</guid>
		<description>[...] How To Put a Multi-Line Indent on a Styled Blockquote &#124; Impressive Webs The ever so tricky multi-lined indent in blockquotes (tags: webdesign html blockquote) [...]</description>
		<content:encoded><![CDATA[<p>[...] How To Put a Multi-Line Indent on a Styled Blockquote | Impressive Webs The ever so tricky multi-lined indent in blockquotes (tags: webdesign html blockquote) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daily Links &#124; AndySowards.com :: Professional Web Design, Development, Programming, Hacks, Downloads, Math and being a Web 2.0 Hipster?</title>
		<link>http://www.impressivewebs.com/how-to-put-a-multi-line-indent-on-a-styled-blockquote/comment-page-1/#comment-374</link>
		<dc:creator>Daily Links &#124; AndySowards.com :: Professional Web Design, Development, Programming, Hacks, Downloads, Math and being a Web 2.0 Hipster?</dc:creator>
		<pubDate>Sat, 30 May 2009 01:03:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=453#comment-374</guid>
		<description>[...] How To Put a Multi-Line Indent on a Styled Blockquote &#124; Impressive Webs The ever so tricky multi-lined indent in blockquotes (tags: webdesign html blockquote) [...]</description>
		<content:encoded><![CDATA[<p>[...] How To Put a Multi-Line Indent on a Styled Blockquote | Impressive Webs The ever so tricky multi-lined indent in blockquotes (tags: webdesign html blockquote) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How To Put a Multi-Line Indent on a Styled Blockquote&#160;&#124;&#160;Design Newz</title>
		<link>http://www.impressivewebs.com/how-to-put-a-multi-line-indent-on-a-styled-blockquote/comment-page-1/#comment-373</link>
		<dc:creator>How To Put a Multi-Line Indent on a Styled Blockquote&#160;&#124;&#160;Design Newz</dc:creator>
		<pubDate>Fri, 29 May 2009 20:01:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=453#comment-373</guid>
		<description>[...] How To Put a Multi-Line Indent on a Styled Blockquote [...]</description>
		<content:encoded><![CDATA[<p>[...] How To Put a Multi-Line Indent on a Styled Blockquote [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Impressive Webs</title>
		<link>http://www.impressivewebs.com/how-to-put-a-multi-line-indent-on-a-styled-blockquote/comment-page-1/#comment-372</link>
		<dc:creator>Impressive Webs</dc:creator>
		<pubDate>Fri, 29 May 2009 16:24:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=453#comment-372</guid>
		<description>Demo and downloadable files added. Thanks for the suggestion Babu.</description>
		<content:encoded><![CDATA[<p>Demo and downloadable files added. Thanks for the suggestion Babu.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
