0

我想像在 html 中那样在表格中创建一个表格。以下是我需要的基本结构![在此处输入图像描述][1]

[1]: http: //i.stack.imgur.com/H6b3f.png
如何编码这样的结构?

4

2 回答 2

0

使用Spark Form组件。

示例(从帮助页面上的示例无耻地修改):

<s:Form id="myForm" width="450" height="125">
    <s:FormHeading label="My Form Title" />
    <s:FormItem label="Name:">
        <s:TextInput id="name" />
        <s:helpContent>
            <s:Label text="Enter your first and last names" />
        </s:helpContent>
    </s:FormItem>
</s:Form>
于 2012-10-22T02:54:50.827 回答
0
 <div id="header_block">
      ...... Header_block Contents
    </div>
   <div id="wrapper">
      ...... Entire Page
    </div>

css

   #header_block
     {
           position:fixed;
           width:100%;
           float:left;
      }
于 2012-10-22T06:12:18.760 回答