制作表格固定

时间:2013-09-13 06:46:42

标签: html forms header fixed

我正在尝试使用“欢迎”和以下表单创建一个固定标题(实际上它只是表单的开头)。欢迎保持固定,因为CSS样式页面告诉所有标题保持固定。但是我的程序不允许我将表单的一部分放在标题中。我无法想象使这部分表格保持固定。

<h1>Welcome</h1>


 <form action="website.php" method="POST">
      <strong>Name:</strong>
        <input type="text" name="user"/>
         <strong>Gender<FONT COLOR="#FF0000">*</FONT></strong>
         <select name="Gender[]" double="double">
           <option value="Female">Female</option>
           <option value="Male">Male</option>
         </select></div>

2 个答案:

答案 0 :(得分:3)

将css代码写为

CSS

#fixheader{
    position: fixed;
}

HTML

<div id='fixheader'>    
    <h1>Welcome</h1>
</div>


 <form action="website.php" method="POST">
      <strong>Name:</strong>
        <input type="text" name="user"/>
         <strong>Gender<FONT COLOR="#FF0000">*</FONT></strong>
         <select name="Gender[]" double="double">
           <option value="Female">Female</option>
           <option value="Male">Male</option>
         </select></div>

答案 1 :(得分:3)

<div class="fixed">
    <h1>Welcome</h1>
</div>

<div class="form">
    <form action="website.php" method="POST">
       <strong>Name:</strong>
       <input type="text" name="user"/>
       <strong>Gender<FONT COLOR="#FF0000">*</FONT></strong>
       <select name="Gender[]" double="double">
           <option value="Female">Female</option>
           <option value="Male">Male</option>
       </select>
   </form>
</div>

和CSS

.fixed
{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    margin:0 auto;
}

.form
{
    margin: 80px auto;
    width: 200px;
    line-height: 40px;
}

input, select
{
    width: 120px;
}

Fiddle is here