> [EMAIL PROTECTED] wrote:
> > no, please! don't say that! my only consern was not 'visual 
> design', but
> > funcional design, I'll try to explain: sometimes, when you 
> design a page,
> > tables don't align with each other, paragraphs are not 
> indented, etc.. and
> > thats when css has to be used. thats the kind of 'not so 
> simple' stuff I was
> > talking about, not 'space age maketing design'!
> 
> Does css help with that stuff?

alot!

> 
> > does lynx supports css already?
> 
> I doubt it.
> 
> But, what IS css, anyway? (I know that it's cascading style sheets.)
> 
> Does it just specify backgrounds and color schemes and borders and
> what not? In that case, there would be no need for lynx to support
> it; lynx ignores most/all of those things anyway.

css is some sort of extention to html. html tags are somehow limited, so
what you do is define a css style and aplly it to the html tag, since css
has plenty properties to modify html tags that arent present on the html tag
defenition.

example:   
you defined a css file (ascii):

TABLE.links{
margin-left : 4em; 
padding-left: 3em;
padding-top: 0em;
padding-bottom: 0em;
width:90%;
}

now, on the html file (whitin the head tag) you link it to the css file:

<LINK REL="StyleSheet" HREF="css_file.css">

further down the html doc,

<table class="links">
....
</table>

that's enought to make it styled. and notice that the padding and margin
properties are not part of the TABLE tag sintax, I believe.

pedro
> 
> > pedro
> -- 
> rick -- A mind is like a parachute... it only works when it's open.
> 
> ICQ# 1590117   [EMAIL PROTECTED] (work)   [EMAIL PROTECTED] (home)
> Help with LRP: lrp.c0wz.com      68 Camaro wanted: dingo.mcrnet.net
> Windows users: Please delete me from your contact list when done
> corresponding with me. You should trim your contact list often anyway.
> 
> My opinions don't exist, and as such, are not anyone elses. I don't 
> represent anyone, not even myself, and especially not my employer..
> 
> _______________________________________________
> Leaf-devel mailing list
> [EMAIL PROTECTED]
> http://lists.sourceforge.net/mailman/listinfo/leaf-devel
> 
_______________________________________________
Leaf-devel mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/mailman/listinfo/leaf-devel

Reply via email to