我想像在 html 中那样在表格中创建一个表格。以下是我需要的基本结构![在此处输入图像描述][1]
[1]: http: //i.stack.imgur.com/H6b3f.png
如何编码这样的结构?
我想像在 html 中那样在表格中创建一个表格。以下是我需要的基本结构![在此处输入图像描述][1]
[1]: http: //i.stack.imgur.com/H6b3f.png
如何编码这样的结构?
使用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>
<div id="header_block"> ...... Header_block Contents </div> <div id="wrapper"> ...... Entire Page </div>
css
#header_block { position:fixed; width:100%; float:left; }