[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: Embedding html in XML


html in xml
On 13 Nov 2002 at 17:55, Empowering You wrote:

> > ...  Forget about using standard
> > HTML for text formatting, that's not the right way to do it in .NET, 
> > in my opinion...
> 
> >Interesting.
> 
> >Why?
> 
> OK, you caught me.  How about, I don't know where I read it, but I got
> the impression that CSS is typically better.

Absolutely! Except when you have to support legacy browsers that don't 
implement CSS properly. Netscape 4 is the primary remaining offender in 
that regard, though it is slowly but surely disappearing.

I think the gentleman thought (as did I) that you were suggesting 
completely throwing out HTML coding in favor of working entirely at the 
level of .NET objects (objects? is that the right term?). My guess is 
that most people on this list would say that "standard HTML" implies 
using CSS, and "<font foo='bar'>" is non-standard, since the former is 
recommended, and the latter deprecated, by the W3C. After all, this is 
a bunch of standards wonks you've got here.

> Correct me if I'm wrong..., but if you use HTML don't you have to use it
> on individual items?  Where as, if you use CSS you can take a whole
> group, say the <paragraph> element, and make everything within that
> element, for example, "bold", rather than go through each paragraph and
> put <b> </b> tags around it.   

Basically, yes. Probably you want to do something like

  <p class="Emph">bla bla bla</p>

		or

  <p id="uniquelyImportantParagraph">yadda yadda</p>

in your HTML and

  p.Emph { font-weight: bold; }

      or

  #uniquelyImportantParagraph { font-weight: bold; }

in your CSS, otherwise you could find yourself bolding all paragraphs, 
an offense second only to writing them in all-caps.

--
Matt Gushee

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.