use CSS to format one word

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I format one word in CSS so that this word will appear the same
throughout my web pages and yet not change any of the other styles I have set
up for paragraphs?
 
Create a css class for the style
..mystyle { some valid css style here ;}
and apply it w/ span tags
<span class="mystyle">theword</span>

Once you have done / applied it once you could use FP Replace (all pages in html code)
To Find
theword
and Replace w/
<span class="mystyle">theword</span>

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


| How do I format one word in CSS so that this word will appear the same
| throughout my web pages and yet not change any of the other styles I have set
| up for paragraphs?
 
Back
Top