已关闭。此问题需要超过focused。当前不接受答案。
**想要改进此问题吗?**更新此问题,使其仅关注editing this post的一个问题。
昨天关门了。
Improve this question
我想使这个样式下图,我试图添加左边距,但它不工作。
<form action="login" method="post">
<fieldset name="logininfo">
<legend>Access Patient Record</legend>
<label for="username">Username:</label>
<input type="text" name="username" id="username"><br> <label for="password">Password:</label>
<input type="password" name="password" id="password"><br> <input type="submit" name="login" value="Login">
</fieldset>
</form>
fieldset {
background:lightcyan;
/* center the form */
margin:auto;
position:relative;
top:100px;
padding-left: 40px;
padding-right: 40px;
padding-top:20px;
padding-bottom:20px;
width:300px;
}
label {
margin-right: 20px;
}
1条答案
按热度按时间7rfyedvj1#
您可以使用此代码来修复此问题: