📜  WML-格式

📅  最后修改于: 2020-10-28 05:39:38             🧑  作者: Mango


本节将描述WML的基本文本格式设置元素。

越线:


元素定义换行符,几乎所有的WAP浏览器都支持换行符。


元素支持以下属性:

Attribute Value Description
xml:lang language_code Sets the language used in the element
class class data Sets a class name for the element.
id element ID A unique ID for the element.

以下是显示
元素用法的示例。







This is a
paragraph with a line break.

这将产生以下结果:

WAP示例4

文字段落:

元素定义文本的段落,WAP浏览器始终在新行中呈现段落。

要在WML中定义任何文本,图像或表格,必须使用

元素。

元素支持以下属性:

Attribute Value Description
align
  • left
  • right
  • center
This is used to change the horizontal alignment of a paragraph.
mode
  • wrap
  • nowrap
Sets whether a paragraph should wrap lines or not.
xml:lang language_code Sets the language used in the element
class class data Sets a class name for the element.
id element ID A unique ID for the element.

以下示例显示

元素的用法。







This is first paragraph

This is second paragraph

这将产生以下结果:

WAP示例3

WML表:

元素与和
一起用于在WML中创建表。 WML不允许嵌套表格

元素应与

元素一起放入。

元素支持以下属性:

Attribute Value Description
columns number Sets the number of columns in the table
align
  • L
  • C
  • R
To specify the horizontal text alignment of the columns, you need to assign three letters to the align attribute. Each letter represents the horizontal text alignment of a column. The letter can be L, C, or R. For example, if you want the following settings to be applied to your table:
  • First table column — Left-aligned

  • Second table column — Center-aligned

  • Third table column — Right-aligned

Then you should set the value of the align attribute to LCR.

xml:lang language_code Sets the language used in the element
class class data Sets a class name for the element.
id element ID A unique ID for the element.

以下是显示

元素用法的示例。







AttributeValueDescription
xml:langlanguage_codeSets the language used in the element
classclass dataSets a class name for the element.
idelement IDA unique ID for the element.

这将产生以下结果:

WAP示例5

预格式化文本:

元素用于指定WML中的预格式化文本。预格式化的文本是其格式遵循WML文档中键入方式的文本。

该标签保留该标签内包含的所有空白。确保您没有将此标签放在

元素支持以下属性:

属性 描述
xml:lang language_code 设置元素中使用的语言
类数据 设置元素的类名称。
ID 元素ID 元素的唯一ID。

以下是显示

元素用法的示例。







   
   This is     preformatted
        text and will appear
 as it it.

这将产生以下结果:

WAP示例7