Re: [PLUG] html conformance (3.2)

Michael W. Ryan on 2000年4月27日 10:47:31 -0400 (EDT)


[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]

Re: [PLUG] html conformance (3.2)


On 2000年4月26日, Joe Laudadio wrote:
> 
> You can use stylesheets. Add this to the <HEAD> section:
> 
> <STYLE type="text/css">
> LI {font-weight: bold; }
> </STYLE>
Actually, this would apply the style to every <LI> tag in the document,
not just ones in unordered lists.
> If dont want every bulleted list bolded, you can do
> 
> LI.boldface {font-weight: bold;}
> 
> Then for all items that you want bulleted you do this:
> 
> <LI class="boldface">Bleh</LI>
An alternate is to apply the style to the list itself. Just define the
following style in your <style> element or styleshett:
 .boldface {font-weight: bold;}
And then just use it on any element you want to have bold, i.e.:
 <ul class="boldface">
 <li>Bleh</li>
 ...
 </ul>
Michael W. Ryan, MCP, MCT | OTAKON 2000
mryan@netaxs.com | Convention of Otaku Generation
http://www.netaxs.com/~mryan/ | http://www.otakon.com/
No, I don't hear voices in my head;
I'm the one that tells the voices in your head what to say.
______________________________________________________________________
Philadelphia Linux Users Group - http://plug.nothinbut.net
Announcements - http://lists.nothinbut.net/mail/listinfo/plug-announce
General Discussion - http://lists.nothinbut.net/mail/listinfo/plug



AltStyle によって変換されたページ (->オリジナル) /