Part IV Presentation of Mobile Content
Tables and Style Sheets
External style sheets must be used to style tables for handheld devices. For example, the
following table attributes will be ignored:
<table border="1" cellspacing="0">
Instead, place a table class in an external style sheet:
mystyles.css
table.myclass {
text-align:center;
border-style: solid;
border-width: thin;
border-collapse: collape;
}
Reference this style from within the <table> tag:
<table class="myclass">
And remember to link the style sheet to the document containing the table.
<html>
<head>
<title>Tables</title>
<link rel="stylesheet" href="mystyles.css" type="text/css"/>
</head>
104 - BEA WebLogic Mobility Server User Guide
Need help?
Do you have a question about the WebLogic and is the answer not in the manual?