BEA WebLogic User Manual page 108

Mobility server
Hide thumbs Also See for WebLogic:
Table of Contents

Advertisement

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

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the WebLogic and is the answer not in the manual?

This manual is also suitable for:

Weblogic mobility server

Table of Contents