why doesn't blockquote work? here is this situation:
<div class="body">
<p>
<strong>
<blockquote>
Champion Termite & Pest Control Specializes in :
<blockquote>
Carpenter Ants<br>
Termites<br>
Roaches<br>
Real Estate Inspections<br>
Construction Pre-treatments<br>
</blockquote>
</blockquote>
</strong>
</p>
</div>How is it not working?
Note also that if you are using the BLOCKQUOTE element for indenting text then you are very badly misusing the element. BLOCKQUOTE is for marking long quotations, as its name implies, and nothing else. Use CSS if you want your text indented.How is it not working?
Note also that if you are using the BLOCKQUOTE element for indenting text then you are very badly misusing the element. BLOCKQUOTE is for marking long quotations, as its name implies, and nothing else. Use CSS if you want your text indented.
what is the css for indenting text?margin, padding, or text-indent -- it depends what effect you want.
<!-- m --><a class="postlink" href="http://www.w3.org/TR/REC-CSS2/propidx.htmlwhat">http://www.w3.org/TR/REC-CSS2/propidx.htmlwhat</a><!-- m --> is the css for indenting text?Well what you've got there is an unordered list so <ul><li> are your mark up.
<p>Champion Termite & Pest Control Specializes in:</p>
<ul>
<li>Carpenter Ants</li>
<li>Termites</li>
<li>Roaches</li>
<li>Real Estate Inspections</li>
<li>Construction Pre-treatments</li>
</ul>
You then style them according to how you want them to look.
<div class="body">
<p>
<strong>
<blockquote>
Champion Termite & Pest Control Specializes in :
<blockquote>
Carpenter Ants<br>
Termites<br>
Roaches<br>
Real Estate Inspections<br>
Construction Pre-treatments<br>
</blockquote>
</blockquote>
</strong>
</p>
</div>How is it not working?
Note also that if you are using the BLOCKQUOTE element for indenting text then you are very badly misusing the element. BLOCKQUOTE is for marking long quotations, as its name implies, and nothing else. Use CSS if you want your text indented.How is it not working?
Note also that if you are using the BLOCKQUOTE element for indenting text then you are very badly misusing the element. BLOCKQUOTE is for marking long quotations, as its name implies, and nothing else. Use CSS if you want your text indented.
what is the css for indenting text?margin, padding, or text-indent -- it depends what effect you want.
<!-- m --><a class="postlink" href="http://www.w3.org/TR/REC-CSS2/propidx.htmlwhat">http://www.w3.org/TR/REC-CSS2/propidx.htmlwhat</a><!-- m --> is the css for indenting text?Well what you've got there is an unordered list so <ul><li> are your mark up.
<p>Champion Termite & Pest Control Specializes in:</p>
<ul>
<li>Carpenter Ants</li>
<li>Termites</li>
<li>Roaches</li>
<li>Real Estate Inspections</li>
<li>Construction Pre-treatments</li>
</ul>
You then style them according to how you want them to look.