可以在里面打字的标签是<input>,如果想改变它的样式就用css来控制,我简单写了下,你可以参考。
效果如下
图片附件: 游客没有浏览图片的权限,请
登录 或
注册
html代码
<fieldset class="hyzc">
<legend>会员注册(带*号为必填项)</legend>
<form>
<p>登录账号:<input type="text" /> *<p>
<p>登录密码:<input type="text" /> *<p>
<p>确认密码:<input type="text" /> *<p>
<p>邮 箱:<input type="text" /> *<p>
<p>公司名称:<input type="text" /> *<p>
<p>联 系 人:<input type="text" /> *<p>
<p>联系电话:<input type="text" /> *<p>
</form>
</fieldset>
css代码
.hyzc{ padding-left:50px; font-size:12px; border:1px solid #fe9900; color:#fe9900;}
.my_content form{ color:#fe9900;}
.my_content input{ border:1px solid #fe9900; margin-top:10px;
}