mirror of
https://github.com/php/presentations.git
synced 2026-03-24 23:52:18 +01:00
24 lines
682 B
XML
24 lines
682 B
XML
<slide title="CSS Optimization">
|
|
<list>
|
|
<bullet>Use CSS instead of incessant <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> |