Files
archived-presentations/slides/advphp/cssoptimize.xml
2002-07-22 19:02:54 +00:00

24 lines
682 B
XML

<slide title="CSS Optimization">
<list>
<bullet>Use CSS instead of incessant &lt;font> tag usage</bullet>
<bullet>All CSS should be contained in an external file that
can be cached.</bullet>
<bullet>Use short names for CSS attributes</bullet>
<bullet>Override global html tag attributes using CSS properties</bullet>
<bullet>Use CSS to control table definitions with CSS v2...</bullet>
</list>
<example fontsize="1.2em"><![CDATA[<STYLE TYPE="text/css">
<--
TABLE {table-layout:fixed; width: 100%}
#fixed COL {width: 50%}
-->
</STYLE>
<TABLE>
<COL><COL>
<TR><TD>Cell 1</TD><TD>Cell 2</TD></TR>
<TR><TD>Cell 3</TD><TD>Cell 3</TD></TR>
</TABLE>
]]>
</example>
</slide>